-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.mjs
57 lines (54 loc) · 1.01 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
fontFamily: {
Lato: ['Lato', 'sans-serif'],
},
colors: {
Shiraz: {
50: "#fef2f2",
100: "#fef2f2",
200: "#f9d2d2",
300: "#f4adad",
400: "#ed7f82",
500: "#e25158",
600: "#ce3040",
DEFAULT: "a32131",
700: "#a32131",
800: "#912031",
900: "#7c1f30",
950: "#450c15"
},
daisy_bush: {
50: "#f5f3ff",
100: "#ede9fe",
200: "#dcd6fe",
300: "#c3b6fc",
400: "#a58cf9",
500: "#895df5",
600: "#793bec",
700: "#6a29d8",
800: "#5922b5",
900: "#5221a3",
950: "#2d1164",
},
cod_gray: {
50: "#f6f6f6",
100: "#e7e7e7",
200: "#d1d1d1",
300: "#b0b0b0",
400: "#888888",
500: "#6d6d6d",
600: "#5d5d5d",
700: "#4f4f4f",
800: "#454545",
900: "#3d3d3d",
950: "#121212",
}
},
},
},
plugins: [],
}