-
Notifications
You must be signed in to change notification settings - Fork 552
/
tailwind.config.js
139 lines (136 loc) · 3.31 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
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
import defaultTheme from 'tailwindcss/defaultTheme';
import colors from 'tailwindcss/colors';
import forms from '@tailwindcss/forms';
const accentColors = {
vapor: '#25c4f2',
forge: '#1EB786',
envoyer: '#F56857',
horizon: '#8C6ED3',
nova: '#4099DE',
echo: '#4AB2B0',
lumen: '#F6AE7A',
homestead: '#E7801C',
spark: '#9B8BFB',
valet: '#5E47CD',
mix: '#294BA5',
cashier: '#91D630',
dusk: '#BB358B',
passport: '#7DD9F2',
scout: '#F55D5C',
socialite: '#E394BA',
telescope: '#4040C8',
tinker: '#EC7658',
jetstream: '#6875f5',
sail: '#38BDF7',
sanctum: '#1D5873',
octane: '#CA3A31',
breeze: '#F3C14B',
pint: '#ffd000',
pennant: '#1aa44a',
livewire: '#fb70a9',
inertia: '#9553e9',
prompts: '#4ade80',
herd: '#dc2626',
pulse: '#7c2fc7',
reverb: '#f25700',
};
export default {
content: [
'app/Markdown/*.php',
'resources/views/**/*.blade.php',
'resources/js/**/*.js',
],
darkMode: 'class',
theme: {
extend: {
fontSize: {
'6.5xl': ['4rem', { lineHeight: '1' }],
},
maxWidth: {
xxs: '16rem',
},
spacing: {
224: '56rem',
},
keyframes: {
cube: {
'50%': { transform: 'translateY(1rem)' },
},
},
animation: {
cube: 'cube 6s ease-in-out infinite',
}
},
boxShadow: {
none: '0 0 0 0 rgba(0, 0, 0, 0)',
sm: `0 10px 15px -8px rgba(9, 9, 16, .1)`,
lg: '0 20px 30px -16px rgba(9, 9, 16, .2)',
xl: '0 10px 20px 0 rgba(9, 9, 16, .15)',
},
colors: {
...{
transparent: 'transparent',
current: 'currentColor',
black: '#000',
white: '#fff',
gray: {
900: '#232323',
800: '#222222',
700: '#565454',
600: '#777777',
500: '#93939e',
400: '#B5B5BD',
300: '#d7d7dc',
200: '#e7e8f2',
100: '#f5f5fa',
50: '#fbfbfd',
},
dark: {
900: '#0C0D12',
800: '#12141C',
700: '#171923',
600: '#252A37',
500: '#394056',
},
red: {
900: '#981d15',
800: '#ca473f',
700: '#ec0e00',
600: '#EB4432',
500: '#F9322C',
400: '#f87171',
300: '#fca5a5',
200: '#fecaca',
100: '#fee2e2',
},
orange: {
600: '#f49d37',
},
blue: {
800: '#055472',
600: '#0782b1',
500: '#0AB2F5',
},
green: colors.green,
purple: {
600: '#8338ec',
},
},
...accentColors,
},
fontFamily: {
sans: ['scandia-web', ...defaultTheme.fontFamily.sans],
mono: ['source-code-pro', ...defaultTheme.fontFamily.mono],
},
},
safelist: [
{
pattern: new RegExp(`bg-(${Object.keys(accentColors).join('|')})`),
}
],
plugins: [
forms({
strategy: 'class',
})
],
}