-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
125 lines (120 loc) · 2.67 KB
/
tailwind.config.ts
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
fontFamily: {
gupter: ['Gupter', 'serif'],
dmsans: ['DM Sans', 'sans-serif']
},
colors: {
'firecracker': {
100: '#ffbaba',
500: '#dd4126',
900: '#a41703',
},
'pine': {
100: '#dee387',
500: '#50a020',
900: '#24564b',
},
'gold': {
100: '#ffeba4',
500: '#f0ae00',
900: '#bd7100',
},
'sapphire': {
100: '#d8edff',
500: '#829bde',
900: '#5666b7',
},
'rose': {
100: '#ffd6ee',
500: '#eb9cc2',
900: '#af3b65',
},
'finterest-solid': '#0F172A',
'finterest-white': '#FFFFFF',
'custom-gold-top': '#CD9500',
'custom-gold-bottom': '#FBD85C'
},
backgroundColor: {
'firecracker': {
100: '#ffbaba',
500: '#dd4126',
900: '#a41703',
},
'pine': {
100: '#dee387',
500: '#50a020',
900: '#24564b',
},
'gold': {
100: '#ffeba4',
500: '#f0ae00',
900: '#bd7100',
},
'sapphire': {
100: '#d8edff',
500: '#829bde',
900: '#5666b7',
},
'rose': {
100: '#ffd6ee',
500: '#eb9cc2',
900: '#af3b65',
},
},
height: {
'1/8': '12.5%',
'1/16': '6.25%',
'100p': '100px',
'150p': '150px',
'200p': '200px',
'500p': '500px',
'30': '30%',
'60': '60%',
'70': '70%',
'80': '80%',
'80vh': '80vh'
},
width: {
'1/8': '12.5%',
'1/16': '6.25%',
'200p': '200px'
},
translate: {
'1/8': '12.5%'
},
margin: {
'minus-2': '-2%',
'minus-15': '-15%',
'minus-20': '-20%',
'minus-30': '-30%',
'minus-40': '-40%',
'minus-50': '-50%',
'minus-60': '-60%',
'minus-80': '-80%',
'minus-120': '-120%'
},
spacing: {
'350p': '350px',
},
screens: {
xs: "480px",
},
},
},
plugins: [],
darkMode: 'class',
}
export default config;