-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
75 lines (73 loc) · 1.67 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
65
66
67
68
69
70
71
72
73
74
75
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors');
// shut up warnings
delete colors['lightBlue'];
delete colors['warmGray'];
delete colors['trueGray'];
delete colors['coolGray'];
delete colors['blueGray'];
module.exports = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
brand: ['Inter', ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
},
colors: {
...colors,
'alice-blue': {
500: '#F4F5F6',
},
brand: {
400: colors.green[400],
600: colors.green[600],
},
'deep-blue': {
800: '#060521',
900: '#05041A',
},
'dark-gray': {
500: '#3B3B3B',
700: '#121212',
800: '#171717',
900: '#111111',
},
info: {
500: '#4965f0',
},
success: {
500: '#15B97E',
},
warning: {
500: '#E8BB47',
},
danger: {
500: '#CA3A31',
},
up: {
DEFAULT: colors.emerald[300],
light: colors.emerald[100],
dark: colors.emerald[400],
extraDark: colors.emerald[500],
},
down: {
DEFAULT: colors.red[400],
light: colors.red[200],
dark: colors.red[500],
extraDark: colors.red[600],
},
},
borderRadius: {
DEFAULT: '4px',
},
borderWidth: {
DEFAULT: '1.5px',
},
},
},
plugins: [],
};