-
Notifications
You must be signed in to change notification settings - Fork 3
/
tailwind.config.ts
46 lines (45 loc) · 2.08 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
import type { Config } from "tailwindcss";
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
white: "hsl(var(--color-white) / <alpha-value>)",
"red-100": "hsl(var(--color-red-100) / <alpha-value>)",
"red-500": "hsl(var(--color-red-500) / <alpha-value>)",
"red-600": "hsl(var(--color-red-600) / <alpha-value>)",
"grey-50": "hsl(var(--color-grey-50) / <alpha-value>)",
"grey-100": "hsl(var(--color-grey-100) / <alpha-value>)",
"grey-200": "hsl(var(--color-grey-200) / <alpha-value>)",
"grey-400": "hsl(var(--color-grey-400) / <alpha-value>)",
"grey-500": "hsl(var(--color-grey-500) / <alpha-value>)",
"grey-900": "hsl(var(--color-grey-900) / <alpha-value>)",
dark: "hsl(var(--color-dark-text) / <alpha-value>)",
light: "hsl(var(--color-light-text) / <alpha-value>)",
"blue-grey-300": "hsl(var(--color-blue-grey-300) / <alpha-value>)",
"blue-grey-400": "hsl(var(--color-blue-grey-400) / <alpha-value>)",
"blue-grey-500": "hsl(var(--color-blue-grey-500) / <alpha-value>)",
"blue-grey-600": "hsl(var(--color-blue-grey-600) / <alpha-value>)",
"blue-grey-700": "hsl(var(--color-blue-grey-700) / <alpha-value>)",
"green-100": "hsl(var(--color-green-100) / <alpha-value>)",
"green-200": "hsl(var(--color-green-200) / <alpha-value>)",
"green-600": "hsl(var(--color-green-600) / <alpha-value>)",
"red-error-100": "hsl(var(--color-red-error-100) / <alpha-value>)",
"red-error-200": "hsl(var(--color-red-error-200) / <alpha-value>)",
"red-error-600": "hsl(var(--color-red-error-600) / <alpha-value>)",
},
fontFamily: {
sans: ["Halyard Display", "sans-serif"],
},
transitionDuration: {
DEFAULT: "var(--animation-duration)",
},
spacing: {
"page-padding": "var(--page-padding)",
"panel-width": "var(--panel-width)",
"panel-content-width": "var(--panel-content-width)",
},
},
},
plugins: [],
} satisfies Config;