-
Notifications
You must be signed in to change notification settings - Fork 4
/
tailwind.config.js
59 lines (59 loc) · 1.69 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
module.exports = {
content: [
'./resources/**/*.antlers.html',
'./resources/**/*.blade.php',
'./resources/**/*.vue',
'./content/**/*.md'
],
theme: {
colors: {
gray: {
'100': '#14161F',
'200': '#1D2129',
'300': '#35373F',
'400': '#40424a',
'500': '#8E8E8E',
'600': '#AEABAB',
'700': '#C3BFBF',
'800': '#C3BFBF',
'900': '#C3BFBF'
},
'red': '#FF2767',
'red-dark': '#D4005C',
'green': '#65FEA5',
'orange': '#FACC14',
'orange-dark': '#F08A1E',
'blue': '#32C5FF',
'blue-dark': '#2800F7',
'aqua': '#A2E5AC',
'yellow': '#FFF5B5',
'purple': '#C80EEC',
'black': 'black',
'pink': '#FF6EA3',
'white': 'white',
'transparent': 'transparent',
},
extend: {
borderColor: ({ theme }) => ({
DEFAULT: theme('colors.gray.300')
}),
boxShadow: {
'highlight': 'rgb(255 255 255 / 25%) 0px 1px 1px 0px inset, rgb(0 0 0 / 25%) 0px 4px 8px 0px',
'glow-up': '0 -33px 55px -32px rgb(255 255 255 / 20%)',
'glow': '0 2px 98px 7px rgba(245,67,106,0.27)',
'glow-red': '0 2px 98px 7px rgba(245,67,106,0.27)'
},
fontFamily: {
'sans': ['Inter', 'sans-serif']
},
fontSize: {
'2xs': '.625rem',
'8xl': '88px',
'9xl': ['8rem', '.825'],
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}