-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
64 lines (64 loc) · 1.24 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
55
56
57
58
59
60
61
62
63
64
module.exports = {
content: [
'./public/**/*.html',
'./src/**/*.{js,jsx,ts,tsx,vue}',
],
// purge: ["./src/**/*.{js,ts,jsx,tsx, vue}"],
darkMode: ['class', '[data-mode="dark"]'],
theme: {
extend: {
transitionProperty: {
width: 'width',
},
colors: {
rb: {
'dark': '#212529',
'light': '#F8F9FA',
},
'navy-blue': {
'50': '#f2f3f9',
'100': '#e6e6f3',
'200': '#c0c1e1',
'300': '#9a9ccf',
'400': '#4e52ab',
'500': '#020887',
'600': '#02077a',
'700': '#020665',
'800': '#010551',
'900': '#010442',
},
black: {
100: '#cdd0d6',
200: '#9ba2ae',
300: '#687385',
400: '#36455d',
500: '#041634',
600: '#03122a',
700: '#020d1f',
800: '#020915',
900: '#01040a',
},
},
screens: {
xs: '320px',
xm: '576px',
sm: '640px',
md: '768px',
slg: '978px',
lg: '1024px',
xl: '1280px',
'2xl': '1440px',
'3xl': '1600px',
},
fontFamily: {
nunito: ['Nunito', 'sans-serif'],
poppins: ['Poppins', 'sans-serif'],
},
},
},
plugins: [
// require('@tailwindcss/forms'),
// require('@tailwindcss/typography'),
// require('@tailwindcss/aspect-ratio'),
],
}