-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (39 loc) · 1.17 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
/** @type {import('tailwindcss').Config} */
export const content = ["./src/templates/**/*.templ", "./src/views/**/*.templ"];
export const theme = {
extend: {
fontFamily: {
sans: ["Montserrat", "sans-serif"],
},
colors: {
background: "hsl(var(--c-background))",
foreground: "hsl(var(--c-foreground))",
primary: {
DEFAULT: "hsl(var(--c-primary))",
foreground: "hsl(var(--c-primary-foreground))",
},
secondary: {
DEFAULT: "hsl(var(--c-secondary))",
foreground: "hsl(var(--c-secondary-foreground))",
},
muted: {
DEFAULT: "hsl(var(--c-muted))",
foreground: "hsl(var(--c-muted-foreground))",
},
accent: {
DEFAULT: "hsl(var(--c-accent))",
foreground: "hsl(var(--c-accent-foreground))",
},
destructive: {
DEFAULT: "hsl(var(--c-destructive))",
foreground: "hsl(var(--c-destructive-foreground))",
},
ring: {
DEFAULT: "hsl(var(--c-ring))",
foreground: "hsl(var(--c-ring-foreground))",
},
},
},
};
export const plugins = [require("tailwind-scrollbar")];
export const corePlugins = { preFlight: true };