-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.cjs
68 lines (68 loc) · 1.99 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
darkMode: "class",
theme: {
extend: {
colors: {
default: "rgb(var(--color-default) / <alpha-value>)",
neutral: "rgb(var(--color-neutral) / <alpha-value>)",
primary: "rgb(var(--color-primary) / <alpha-value>)",
elevation: "rgb(var(--color-elevation) / <alpha-value>)",
secondary: "rgb(var(--color-secondary) / <alpha-value>)",
accent: "rgb(var(--color-accent) / <alpha-value>)",
warning: "rgb(var(--color-warning) / <alpha-value>)",
error: "rgb(var(--color-error) / <alpha-value>)",
success: "rgb(var(--color-success) / <alpha-value>)",
info: "rgb(var(--color-info) / <alpha-value>)",
"kohan-50": "#e2f6fe",
"kohan-100": "#b5e7fd",
"kohan-200": "#85d7fb",
"kohan-300": "#57c7f9",
"kohan-400": "#37bbf8",
"kohan-500": "#22aff6",
"kohan-600": "#1fa0e7",
"kohan-700": "#1b8dd3",
"kohan-800": "#187cbf",
"kohan-900": "#115c9e",
},
},
fontFamily: {
sans: [
'"InterVariable"',
"ui-sans-serif",
"system-ui",
"-apple-system",
"BlinkMacSystemFont",
'"Segoe UI"',
"Roboto",
'"Helvetica Neue"',
"Arial",
'"Noto Sans"',
"sans-serif",
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
'"Noto Color Emoji"',
],
serif: ["ui-serif", "Georgia"],
mono: [
'"JetBrains Mono"',
"monospace",
"ui-monospace",
"Menlo",
"Monaco",
'"Cascadia Mono"',
'"Segoe UI Mono"',
'"Roboto Mono"',
'"Oxygen Mono"',
'"Ubuntu Monospace"',
'"Source Code Pro"',
'"Fira Mono"',
'"Droid Sans Mono"',
'"Courier New"',
],
},
},
plugins: [require("tailwind-scrollbar")],
};