-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
52 lines (52 loc) · 1.07 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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
/** Change here the font family */
sans: ["Inter Variable", "Inter", ...defaultTheme.fontFamily.sans],
},
colors: {
/** Override here your primary colors */
primary: {
50: "#fef1f7",
100: "#fee5f0",
200: "#fecce3",
300: "#ffa2cb",
400: "#fe68a7",
500: "#f83c86",
600: "#e91f64",
700: "#ca0c47",
800: "#a70d3b",
900: "#8b1034",
950: "#55021a",
},
secondary: {
50: "#f4f7f7",
100: "#e2ebeb",
200: "#c8d9d8",
300: "#a1bfbf",
400: "#739c9d",
500: "#588182",
600: "#4c6c6e",
700: "#425a5c",
800: "#3b4d4f",
900: "#354244",
950: "#222d2f",
},
},
},
},
plugins: [require.resolve("prettier-plugin-astro")],
overrides: [
{
files: "*.astro",
options: {
parser: "astro",
},
},
],
darkMode: "class",
};