-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
27 lines (27 loc) · 806 Bytes
/
tailwind.config.ts
File metadata and controls
27 lines (27 loc) · 806 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx,html,vue,svelte,stub}",
"./src/**/**/*.{js,ts,jsx,tsx,html,vue,svelte,stub}",
],
darkMode: "class",
theme: {
extend: {
screens: {
xs: "360px"
},
colors: {
background: "hsl(var(--background))",
foreground: "hsl(var(--foreground))",
primary: "hsl(var(--primary))",
'primary-foreground': "hsl(var(--primary-foreground))",
},
fontFamily: {
default: "Kantumruy Pro, Poppins, sans-serif",
head: "Kdam Thmor Pro, Kanit, serif"
},
},
},
plugins: [],
}