generated from Borodutch/frontend-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.js
46 lines (46 loc) · 1.23 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
/** @type {import("@types/tailwindcss/tailwind-config").TailwindConfig } */
module.exports = {
purge: ['./public/index.html', './src/**/!(tailwind).{ts,tsx}'],
theme: {
extend: {
colors: {
black: {
background: '#081420',
},
bronze: {
full: 'rgb(238,141,81)',
semifull: 'rgba(238, 141, 81, 0.3)',
semitransparent: 'rgba(198, 198, 198, 0.1)',
},
silver: {
semifull: 'rgba(198, 198, 198, 0.3)',
semitransparent: 'rgba(253, 206, 41, 0.1)',
},
gold: {
semifull: 'rgba(253, 206, 41, 0.3)',
semitransparent: 'rgba(232, 252, 231, 0.1)',
},
platinum: {
semifull: 'rgba(232, 252, 231, 0.3)',
semitransparent: 'rgba(75, 201, 240, 0.1)',
},
diamond: {
semifull: 'rgba(75, 201, 240, 0.3)',
semitransparent: 'rgba(47, 211, 15, 0.1)',
},
green: {
source: '#59E0C0',
'button-start': 'rgba(89, 224, 192, 0.06)',
'button-end': 'rgba(14, 200, 132, 0.06)',
},
},
},
container: {
center: true,
padding: '2rem',
},
borderRadius: {
DEFAULT: '1.5rem',
},
},
}