-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
48 lines (47 loc) · 989 Bytes
/
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
module.exports = {
content: ["./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}"],
options: {
safelist: [
'dark'
]
},
darkMode: 'class', // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
'ibm': ['IBM Plex Mono', 'monospace']
},
colors: {
blue: {
'light_400': '#F4F7FE',
'light_500': '#2563EB',
'light_600': '#2B3674',
'light_700': '#18243b',
},
gray:{
700: '#707EAE',
},
dark: {
'700': '#131419',
'500': '#142035'
},
green: {
'transparent': '#17CB49',
'gradient': 'linear-gradient(#E7755F, #E7755F)',
'grad-one': '#f2c384',
'grad-two':'#f2c384',
"brand-04": "rgb(74 222 128)"
}
}
},
},
variants: {
extend: {
display: ['dark']
},
},
plugins: [
require("@tailwindcss/forms")
]
}