-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.ts
77 lines (77 loc) · 2.04 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import type { Config } from "tailwindcss";
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/react-tailwindcss-datepicker/dist/index.esm.js",
],
darkMode: "class", // or false or 'media'
theme: {
screens: {
sm: "640px",
md: "860px",
lg: "1024px",
xl: "1280px",
},
extend: {
colors: {
"vektor-blue": "#6fceee",
"vektor-blue-hover": "#46b6dd",
"vektor-darkblue": "#023874",
"vektor-DARKblue": "#022346",
"table-grey": "#EFEFEF",
"vektor-kontrollblue": "#292E4C",
"vektor-bg": "#E2F4FA",
"vektor-bg-dark": "#2a2a2a",
"text-light": "#000",
"text-dark": "#fff",
},
keyframes: {
"accordion-down": {
from: { height: "0" },
to: { height: "var(--radix-accordion-content-height)" },
},
"accordion-up": {
from: { height: "var(--radix-accordion-content-height)" },
to: { height: "0" },
},
},
animation: {
"accordion-down": "accordion-down 0.2s ease-out",
"accordion-up": "accordion-up 0.2s ease-out",
},
},
},
variants: {
extend: {},
},
daisyui: {
themes: [
{
vektor: {
primary: "#6fceee",
"primary-focus": "#46b6dd",
"primary-content": "#ffffff",
secondary: "#023874",
"secondary-focus": "#001854",
"secondary-content": "#ffffff",
accent: "#E2F4FA",
"accent-focus": "#222222",
"accent-content": "#ffffff",
neutral: "#B4C3C8",
"neutral-focus": "#2a2e37",
"neutral-content": "#ffffff",
"base-100": "#fafdff",
"base-200": "#f9fafb",
"base-300": "#d1d5db",
"base-content": "#1f2937",
info: "#2094f3",
success: "#4CAF50",
warning: "#ff9900",
error: "#ff5724",
},
},
],
},
plugins: [require("postcss-import"), require("daisyui")],
} satisfies Config;