-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (45 loc) · 1018 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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode:'class',
theme: {
extend: {
rotate: {
'23': '23deg',
},
colors:{
light:{
primary: '#009FB7',
secondary:'#0D3B66',
background: '#F4F4F8',
text: '#242038',
gray: '#6E7E85',
red: '#4CB963'
},
dark:{
primary: '#009FB7',
secondary:'#0D3B66',
background: '#12130F',
text: '#F4F4F8',
gray: '#6E7E85'
},
'primary':'#30DFC4',
'darkblue':'#100842',
'darkgreen':'#1D8676',
'lightblue': '#5ADBFF',
'mintwhite':'#E6FDFF',
'night':'#12130F',
'ghostwhite':'#FFFAFF'
},
fontFamily:{
jura: "'Jura', sans-serif",
epilogue: "'Epilogue', sans-serif",
righteous: "'Righteous', sans-serif"
}
},
},
plugins: [],
}