-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
56 lines (56 loc) · 1.33 KB
/
tailwind.config.cjs
File metadata and controls
56 lines (56 loc) · 1.33 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
fontFamily: {
straker: ["Straker"],
inter: ["Inter", "sans-serif"],
sans: ["Archivo", "sans-serif"],
mono: ["Cascadia Code", "Consolas", "Menlo", "monospace"],
},
colors: {
olivine: {
50: "#f5faf3",
100: "#e9f4e4",
200: "#d2e8ca",
300: "#aed5a0",
400: "#8dc07c",
500: "#5e9d4a",
600: "#4b8039",
700: "#3c662f",
800: "#325229",
900: "#2b4324",
950: "#13240f",
},
sea: {
50: "#f5f8f6",
100: "#dfe8e4",
200: "#bed1c9",
300: "#83a598",
400: "#6f9285",
500: "#55776b",
600: "#435e56",
700: "#384d46",
800: "#303f3b",
900: "#2a3733",
950: "#151e1c",
},
squirrel: {
50: "#f4f3f2",
100: "#e4e2dd",
200: "#cbc5bd",
300: "#ada397",
400: "#928274",
500: "#87776b",
600: "#73635b",
700: "#5e4f4a",
800: "#514542",
900: "#473d3c",
950: "#282020",
},
},
},
},
plugins: [],
};