-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtailwind.config.js
41 lines (41 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
screens: {
'xs': '480px', // custom breakpoint
},
colors: {
nowblue:'#24C2CE',
nowcyan:'#0ED3CF',
nowgray:'#4f4f4f',
nowwasabi:'#62D84E',
nowinfblue: {
100: '#032d42',
200: '#00192C',
},
nowpink:'#FC7786',
nowpurple:'#5274FF',
polarispurple:'#4349B1',
polarispurpledarkbg:'#21233D',
polarispurpledarktxt:'#9EA1FB',
polarispurplehover:'#ECECF7',
noworange:'#F0964F',
nowgreen: {
100: '#DDFFCA',
200: '#C0FFAE',
300: '#007E0A',
400: '#A3FF93',
400: '#86ED78', // this is default
500: '#69D05E',
600: '#4BB444',
700: '#2B992A',
800: '#007E0A',
},
},
},
},
plugins: [],
darkMode: ['class', '[data-theme="dark"]'],
};