-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtailwind.config.js
72 lines (65 loc) · 1.46 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
const defaultColors = {
"background": "#0F0814",
"header-background": "#261731",
"container-background": "#2A1936",
"backdrop": "#1B0F23",
"divider": "#13071A",
"header-foreground": "#F7F7F7",
"foreground": "#F7F7F7",
"gentle": "#C3C3C3",
"link": "#d4c6d5",
"link-hover": "#fde9ff",
"invisible": "#00000000",
"primary": "#A13DE3",
"secondary": "#87748A",
"teritary": "#100915",
"secondary-bright": "#E2CFE5",
"red": "#E52E2E",
"green": "#52BC24",
"blue": "#2D43E5",
"yellow": "#F2AA00",
"pink": "#ff68f4",
"rank-gold": "#FFD234",
"rank-silver": "#f9f4f9",
"rank-bronze": "#FF8845",
"rank-other": "#87748A",
"rank-own": "#b88fbf",
}
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
colors: defaultColors,
extend: {
fontSize: {
"md": "0.95rem"
}
},
fontFamily: {
'display': ['Rubik'],
'body': ['Rubik']
},
borderRadius: {
'none': '0',
DEFAULT: '0.6875rem',
// DEFAULT: '11px',
'md': '0.375rem',
'lg': '0.5rem',
'full': '9999px',
},
backgroundImage: {
"hero": "url('/assets/hero.svg')",
"logo": "url('/assets/logo.svg')",
},
screens: {
'sm': {'max': '767px'},
'md': {'min': '768px', 'max': '1023px'},
'lg': {'min': '1024px', 'max': '1279px'},
'xl': {'min': '1280px'},
'2xl': {'min': '1500px'},
},
},
plugins: [],
}