-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
51 lines (51 loc) · 1.55 KB
/
tailwind.config.js
File metadata and controls
51 lines (51 loc) · 1.55 KB
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
module.exports = {
purge: ['./src/**/*.{js,jsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
fontFamily: {
secundary_text: ['Quicksand'],
},
colors: {
gray: {
dark: '#36393F',
extra_dark: '#2F3136',
color_text: '#B9BBBE',
color_hover: '#3B3D42',
'color_dark-100': '#36393F',
'color-dark-200': '#202225',
'bg-scrollbar': '#2E3338',
},
blue: {
burple: '#5865F2',
blurple_hover: 'var(--blue-hover)',
},
purple: {
discordOld: '#7289DA',
discordOld_hover: '#7B8FD4',
},
green: {
light: '#85ED91',
hover: '#359553',
},
red: {
circle: '#ED4245',
},
},
animation: {
rotation: 'spin 0.5s linear 0.5',
xd: 'bounceUpDown 2s ease-out infinite',
},
keyframes: {
bounceUpDown: {
'0, 100%': { transform: 'translateY(0)' },
'50%': { transform: 'translateY(15px)' },
},
},
},
},
variants: {
extend: {},
},
plugins: [require('tailwind-scrollbar')],
};