-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
78 lines (78 loc) · 1.63 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./app/**/*.{js,ts,jsx,tsx}', './components/**/*.{js,ts,jsx,tsx}'],
theme: {
fontFamily: {
sans: ['var(--font-albert-sans)'],
mono: ['var(--font-fira-code)'],
},
colors: {
venom: {
DEFAULT: '#99F162',
600: '#3BB31A',
},
purple: {
DEFAULT: '#DBA1F7',
700: '#661881',
},
blue: {
DEFAULT: '#75C8F0',
},
white: '#F0F3F5',
slate: {
300: '#A3B8C2',
500: '#668899',
600: '#516D7B',
650: '#47606B',
700: '#3D525C',
750: '#33434D',
800: '#29363D',
850: '#1F282E',
900: '#141B1F',
},
red: '#F78F6E',
yellow: '#EEF162',
black: '#000',
transparent: 'transparent',
},
boxShadow: {
md: '0 2px 8px rgba(0, 0, 0, 0.2)',
lg: '0 4px 16px rgba(0, 0, 0, 0.2)',
xl: '0 8px 32px rgba(0, 0, 0, 0.2)',
shine: '0 0 16px',
},
extend: {
fontSize: {
sm: ['0.875rem', '1.125rem'],
},
spacing: {
13: '3.25rem',
15: '3.75rem',
22: '5.5rem',
},
minWidth: {
48: '12rem',
},
height: {
icon: '1.33em',
},
size: {
icon: '1.25em',
},
minHeight: {
96: '24rem',
},
aspectRatio: {
'2/1': '2 / 1',
'4/3': '4 / 3',
},
borderWidth: {
3: '3px',
},
backgroundImage: {
'radial-gradient': 'radial-gradient(80% 100% at top, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}