-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
tailwind.config.js
63 lines (62 loc) · 1.8 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
import franken from './src/lib/shadcn-ui/preset-quick';
/** @type {import('tailwindcss').Config} */
export default {
presets: [
franken({
customPalette: {
'.uk-theme-emerald': {
'--background': '160.1 100% 95%',
'--foreground': '160.1 5% 10%',
'--card': '160.1 50% 90%',
'--card-foreground': '160.1 5% 15%',
'--popover': '160.1 100% 95%',
'--popover-foreground': '160.1 100% 10%',
'--primary': '160.1 84.1% 39.4%',
'--primary-foreground': '0 0% 100%',
'--secondary': '160.1 30% 70%',
'--secondary-foreground': '0 0% 0%',
'--muted': '122.1 30% 85%',
'--muted-foreground': '160.1 5% 40%',
'--accent': '122.1 30% 80%',
'--accent-foreground': '160.1 5% 15%',
'--destructive': '0 100% 50%',
'--destructive-foreground': '160.1 5% 90%',
'--border': '160.1 30% 63%',
'--input': '160.1 30% 50%',
'--ring': '160.1 84.1% 39.4%'
},
'.dark.uk-theme-emerald': {
'--background': '160.1 50% 10%',
'--foreground': '160.1 5% 90%',
'--card': '160.1 50% 10%',
'--card-foreground': '160.1 5% 90%',
'--popover': '160.1 50% 5%',
'--popover-foreground': '160.1 5% 90%',
'--primary': '160.1 84.1% 39.4%',
'--primary-foreground': '0 0% 100%',
'--secondary': '160.1 30% 20%',
'--secondary-foreground': '0 0% 100%',
'--muted': '122.1 30% 25%',
'--muted-foreground': '160.1 5% 63%',
'--accent': '122.1 30% 25%',
'--accent-foreground': '160.1 5% 90%',
'--destructive': '0 100% 50%',
'--destructive-foreground': '160.1 5% 90%',
'--border': '160.1 30% 50%',
'--input': '160.1 30% 50%',
'--ring': '160.1 84.1% 39.4%'
}
}
})
],
content: ['./src/**/*.{html,js,svelte,ts}'],
safelist: [
{
pattern: /^uk-/
}
],
theme: {
extend: {}
},
plugins: []
};