-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (56 loc) · 1.21 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
colors: {
'custom-pink': '#764d76',
'custom-lila-light': '#4d2f80',
'custom-lila-dark': '#2f0f64',
'custom-blue': '#111827',
'custom-red-light': '#9e575c',
'custom-red-dark': '#ad3732',
'custom-cloud': '#9e575c'
},
fontSize: {
xxs: '0.625rem'
},
spacing: {
90: '22rem'
},
dropShadow: {
glow: [
'0 0px 20px rgba(255,255, 255, 0.1)',
'0 0px 65px rgba(255, 255,255, 0.2)'
],
// Shadows for red
'glow-black-100': [
'0 0px 20px rgba(0, 0, 0, 0.35)',
'0 0px 65px rgba(0, 0, 0, 0.2)'
],
// Shadows for red
'glow-red-100': [
'0 0px 20px rgba(255, 0, 0, 0.35)',
'0 0px 65px rgba(255, 0, 0, 0.2)'
],
// Shadows for green
'glow-green-400': [
'0 0px 10px rgba(74, 222, 128, 0.2)',
'0 0px 35px rgba(74, 222, 128, 0.1)'
],
// Shadows for blue
'glow-blue-400': [
'0 0px 10px rgba(96, 165, 250, 0.2)',
'0 0px 35px rgba(96, 165, 250, 0.1)'
]
},
blur: {
xs: '1px'
}
},
fontFamily: {
armata: ['Armata', 'sans-serif']
}
},
plugins: []
};