-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.ts
57 lines (51 loc) · 1.62 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
import type { Config } from 'tailwindcss/types/config'
export default {
content: [
'./vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php',
'./storage/framework/views/*.php',
'./resources/**/*.{tsx,ts}',
'./resources/views/**/*.{blade.php,tsx,ts}',
'./resources/theme/**/*.{tsx,ts}',
'./resources/components/**/*.tsx',
],
theme: {
extend: {
fontFamily: {
sans: ['InterVariable', 'InterVariable Fallback'],
pacifico: ['Pacifico', 'Pacifico Fallback'],
},
boxShadow: {
'highlight': 'inset 0 0 0 1px rgba(255, 255, 255, 0.05)',
'input': '0 0 0 1px #6366f1',
'invalid-input': '0 0 0 1px #dc2626',
'base':
'0 1px 3px 0 rgba(0, 0, 0, 0.1),0 1px 2px 0 rgba(0, 0, 0, 0.06)',
'dropdown':
'rgba(145, 158, 171, 0.24) 0px 0px 2px 0px, rgba(145, 158, 171, 0.24) -20px 20px 40px -4px',
'card':
'rgba(145, 158, 171, 0.2) 0px 0px 2px 0px, rgba(145, 158, 171, 0.12) 0px 12px 24px -4px',
'card-cta':
'rgb(145 158 171 / 24%) 0px 0px 2px 0px, rgb(145 158 171 / 24%) 0px 16px 32px -4px',
},
colors: {
custom: {
'custom-hsl': 'hsl(154, 12%, 45%)',
},
brand: {
'50': '#eef2ff',
'100': '#e0e7ff',
'200': '#c7d2fe',
'300': '#a5b4fc',
'400': '#818cf8',
'500': '#6366f1',
'600': '#4f46e5',
'700': '#4338ca',
'800': '#4338ca',
'900': '#3730a3',
'950': '#1e1b4b',
},
},
},
},
plugins: [],
} satisfies Config