-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.mjs
54 lines (51 loc) · 1.19 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
import typography from "@tailwindcss/typography";
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
colors: {
siren: {
50: "#fef1f9",
100: "#fee5f5",
200: "#ffcaed",
300: "#ff9fdc",
400: "#ff64c2",
500: "#fe36a7",
600: "#ef1384",
700: "#d00668",
800: "#ac0856",
900: "#760a3d",
950: "#580028",
},
monsoon: {
50: "#f8f7f8",
100: "#f2f1f2",
200: "#e6e4e5",
300: "#d3ced1",
400: "#b7afb3",
500: "#9f959a",
600: "#8d8287",
700: "#70666a",
800: "#5e5659",
900: "#514a4d",
950: "#2e292b",
},
diesel: {
50: "#ffedf0",
100: "#ffd5db",
200: "#fdabba",
300: "#fc7591",
400: "#fa3d6f",
500: "#f7185d",
600: "#e90d60",
700: "#c10d59",
800: "#991352",
900: "#7b1344",
950: "#12020a",
},
},
},
},
plugins: [typography],
};