-
Notifications
You must be signed in to change notification settings - Fork 7
/
tailwind.config.js
96 lines (95 loc) · 2.24 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}'
],
safelist: [
'bg-green-500',
'bg-amber-400',
'bg-red-500',
'bg-blue-400',
'bg-orange-300',
'bg-lime-300',
'bg-pink-300',
'bg-yellow-300',
'bg-blue-300'
],
theme: {
fontFamily: {
main: ['var(--font-space-grotesk)'],
sans: ['var(--font-inter)'],
mono: ['var(--font-space-mono)'],
serif: ['var(--font-ibm-plex-serif)'],
pixel: ['var(--font-press-start)'],
alegre: ['var(--font-alegreya)'],
digital: '"Digital"',
digitalMono: '"Digital Mono"'
},
extend: {
colors: {
'main-yellow': '#fbbf24',
blue: {
discord: '#807cfc'
},
discord: {
light: '#9b98fa',
vibrant: '#5864f4',
deselected: '#404675',
'deselected-mention': '#c9cdfb'
},
yellow: {
'discord-role': '#ffff88'
},
amber: {
450: '#F8AF18',
550: '#E78B09'
},
gray: {
darker: '#0d0d0d',
dark: '#1c1c1c',
discord: '#383c3c',
'discord-dark': '#303434',
'discord-darker': '#282424'
},
gold: {
discord: '#f1c40f'
}
},
boxShadow: {
blocks: '8px 8px',
'blocks-sm': '4px 4px',
'blocks-md': '6px 6px',
email: '6px 6px',
'footer-btn': '0px 6px',
'email-btn': '2px 3px',
'dark-action-btn': '6px 6px'
},
screens: {
xs: '375px'
},
fontSize: {
mxs: '.9rem',
'15xl': '15rem'
},
top: {
'100vw': '100vw'
},
keyframes: {
'fade-in': {
'0%': { opacity: '50%' },
'100%': { opacity: '100%' }
},
'bg-flash': {
'0%': { backgroundColor: '59, 235, 135' },
'100%': { backgroundColor: 'rgb(3, 111, 252)' }
}
},
animation: {
'fade-in': 'fade-in .5s ease-in-out',
'bg-flash': 'bg-flash 1s linear 0s infinite alternate'
}
}
},
plugins: [require('tailwind-scrollbar'), require('@tailwindcss/forms')]
};