-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
44 lines (44 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
'./constant/**/*.{js,ts}',
],
theme: {
container: {
center: true,
},
extend: {
colors: {
//
primary: '#000CEB',
secondary: '#FF6E4D',
accent: '#00E2C3',
// white exists
lighter: '#F5F5F5',
light: '#707070',
black: '#20201E',
'accent-2': '#7DE1C3',
'secondary-2': '#FB7B3C',
'accent-3': '#68DEA44D',
// dark
'primary-dark': '#000CEB',
'secondary-dark': '#FF6E4D',
'accent-dark': '#00E2C3',
'white-dark': '#ffffff',
// for white bgs in dark
dark: '#20201E',
'lighter-dark': '#F5F5F5',
'light-dark': '#707070',
'darker-dark': '#191D1D',
'black-dark': '#000000',
'accent-2-dark': '#7DE1C3',
'accent-3-dark': '#68DEA44D',
'secondary-2-dark': '#FB7B3C',
},
},
},
plugins: [],
darkMode: 'class',
}