-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
49 lines (47 loc) · 1.14 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
import type { Config } from "tailwindcss";
import colors from "tailwindcss/colors";
const config = {
content: ["./index.html", "./src/**/*.@(css|ts|vue)"],
theme: {
colors: {
neutral: { 0: colors.white, ...colors.slate, 1000: colors.black },
primary: colors.slate,
accent: colors.slate,
nprogress: colors.slate[700],
brand: {
cyan: "hsl(175.9deg 38.6% 77.6%)",
red: "hsl(1.8deg 71.3% 63.1%)",
yellow: "hsl(47deg 77.8% 59.4%)",
"cyan-tint": "hsl(175.9deg 38.6% 92%)",
"red-tint": "hsl(1.8deg 71.3% 92%)",
"yellow-tint": "hsl(47deg 77.8% 92%)",
},
background: colors.neutral[50],
text: colors.neutral[900],
},
extend: {
fontFamily: {
display: [
"Chicago",
"Noto Sans Display Variable",
"ui-sans-serif",
"system-ui",
"sans-serif",
],
sans: ["Noto Sans Display Variable", "ui-sans-serif", "system-ui", "sans-serif"],
},
screens: {
xxs: "360px",
xs: "480px",
},
zIndex: {
dialog: "100",
elevated: "1",
nprogress: "50",
overlay: "200",
},
},
},
plugins: [require("@headlessui/tailwindcss")],
} satisfies Config;
export default config;