-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (52 loc) · 1.12 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const colors = require("tailwindcss/colors");
module.exports = {
mode: "jit",
content: ["./index.html", "./src/**/*.{js,jsx,ts,tsx,vue}"],
darkMode: false,
theme: {
extend: {
screens: {
'mobile': '480px',
},
colors: {
navy: {
'50': '#f5f7fa',
'100': '#ebeff4',
'150': "#CDDCF8",
'200': '#d0dce7',
'300': '#a8bed1',
'400': '#7a9cb8',
'500': '#587e9d',
'600': '#436584',
'700': '#37526c',
'800': '#2d455c',
'900': '#255E93',
'950': '#192e47', //bg and txt color
'1000': '#1d2a3a',
},
graybrown: '#7C7370',
black: {
DEFAULT: colors.black,
50: "#373737",
},
gold: '#FFD700',
silver: '#C0C0C0',
bronze: '#CD7F32',
},
fontFamily: {
mono: ["Consolas"],
inter: ['Inter', 'sans-serif'],
montserrat: ['Montserrat', 'sans-serif'],
},
fontSize: {
xxs: ['10px'],
},
}
},
variants: {
extend: {
},
},
plugins: [
]
};