-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
61 lines (59 loc) · 1.26 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx,mdx}'],
theme: {
extend: {
fontFamily: {
sans: 'var(--font-roboto)',
alt: 'var(--font-bai-janjuree)',
},
colors: {
BG: {
500: '#1D283A',
700: '#0f172a',
800: '#070C1A',
900: '#030711',
defocus: '#03071156',
},
gray: {
200: '#c8cfd9',
300: '#a2aebe',
400: '#7f8ea3',
500: '#596981',
600: '#4d596d',
700: '#434b5b',
800: '#3c424e',
900: '#20232c',
950: '#20232c',
},
jade: {
500: '#00b37e',
600: '#00a474',
700: '#008361',
},
purple: {
500: '#7B61FF',
700: '#4f1ee3',
},
mirage: {
700: '#314d73',
800: '#2c4360',
900: '#293951',
950: '#1d283a',
},
red: {
500: '#ff234b',
600: '#FF002E',
},
},
fontSize: {
'5xl': '2.5rem',
},
height: {
'hv-calc': 'calc(100vh - 8.0625rem)',
'hv-section': 'calc(100vh - 16.875rem)',
},
},
},
plugins: [],
}