-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.mjs
92 lines (92 loc) · 1.97 KB
/
tailwind.config.mjs
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/** @type {import('tailwindcss').Config} */
import colors, { blue } from 'tailwindcss/colors';
export default {
content: [
"./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}",
"./node_modules/preline/preline.js",
],
darkMode: "class",
theme: {
colors: {
transparent: "transparent",
current: "currentColor",
black: "#000000",
white: "#ffffff",
gray: colors.gray,
indigo: colors.indigo,
neutral: {
50: "#f9fafb",
100: "#f3f4f6",
200: "#e5e7eb",
300: "#d1d5db",
400: "#9ca3af",
500: "#6b7280",
600: "#4b5563",
700: "#374151",
800: "#011427",
900: "#00070d",
},
blue: {
50: "#78d0f0",
100: "#3CBFF0",
400: "#00AEEF",
500: "#0083b3",
800: "#022241",
900: "#011427",
},
yellow: {
50: "#78d0f0",
100: "#3CBFF0",
400: "#00AEEF",
500: "#0083b3",
},
pink: {
100: "#ed77be",
200: "#ED4FAD",
300: "#EC289D",
400: "#EC008C",
500: "#9D0861",
600: "#4E0F36",
},
green: {
500: "#1EBEA0",
},
orange: {
100: "#ed77be",
200: "#ED4FAD",
300: "#EC289D",
400: "#EC008C",
500: "#9D0861",
600: "#4E0F36",
},
cqDarkPrimary: {
100: "#04305A",
200: "",
300: "#022241",
400: "",
500: "#011427",
600: "",
700: "#00070E",
800: "",
900: "#000205",
},
cqDarkSecondary: {
100: "#ed77be",
200: "#ED4FAD",
300: "#EC289D",
400: "#EC008C",
500: "#9D0861",
600: "#4E0F36",
},
red: colors.red,
zinc: colors.zinc,
},
extend: {},
},
plugins: [
require("tailwindcss/nesting"),
require("preline/plugin"),
require("@tailwindcss/forms"),
require('@tailwindcss/typography'),
],
};