-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
68 lines (63 loc) · 2.67 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
58
59
60
61
62
63
64
65
66
67
68
import containerQueries from '@tailwindcss/container-queries'
import type { Config } from 'tailwindcss'
export default {
darkMode: 'class', // This enables dark mode based on the presence of the "dark" class in the HTML tag
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
// './node_modules/<your_library>/**/*.{vue,js,ts,jsx,tsx}'
],
safelist: [
'bg-primary',
'bg-surface',
{
pattern: /bg-(primary|surface)-(50|100|200|300|400|500|600|700|800|900|950)/,
},
'bg-white',
],
theme: {
// Define your overwrites and customizations for the default Tailwind CSS theme here
colors: {
transparent: 'transparent',
current: 'currentColor',
primary: {
DEFAULT: 'rgb(var(--primary) / <alpha-value>)',
50: 'rgb(var(--primary-50) / <alpha-value>)',
100: 'rgb(var(--primary-100) / <alpha-value>)',
200: 'rgb(var(--primary-200) / <alpha-value>)',
300: 'rgb(var(--primary-300) / <alpha-value>)',
400: 'rgb(var(--primary-400) / <alpha-value>)',
500: 'rgb(var(--primary-500) / <alpha-value>)',
600: 'rgb(var(--primary-600) / <alpha-value>)',
700: 'rgb(var(--primary-700) / <alpha-value>)',
800: 'rgb(var(--primary-800) / <alpha-value>)',
900: 'rgb(var(--primary-900) / <alpha-value>)',
950: 'rgb(var(--primary-950) / <alpha-value>)',
},
surface: {
DEFAULT: 'rgb(var(--surface) / <alpha-value>)',
50: 'rgb(var(--surface-50) / <alpha-value>)',
100: 'rgb(var(--surface-100) / <alpha-value>)',
200: 'rgb(var(--surface-200) / <alpha-value>)',
300: 'rgb(var(--surface-300) / <alpha-value>)',
400: 'rgb(var(--surface-400) / <alpha-value>)',
500: 'rgb(var(--surface-500) / <alpha-value>)',
600: 'rgb(var(--surface-600) / <alpha-value>)',
700: 'rgb(var(--surface-700) / <alpha-value>)',
800: 'rgb(var(--surface-800) / <alpha-value>)',
900: 'rgb(var(--surface-900) / <alpha-value>)',
950: 'rgb(var(--surface-950) / <alpha-value>)',
},
white: 'rgb(var(--white) / <alpha-value>)',
},
extend: {
// Add your custom classes, or override existing classes here
borderRadius: {
DEFAULT: 'var(--border-radius)',
},
},
},
plugins: [
containerQueries
],
} satisfies Config