-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.mjs
More file actions
36 lines (36 loc) · 830 Bytes
/
tailwind.config.mjs
File metadata and controls
36 lines (36 loc) · 830 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{astro,html,md,mdx,ts,tsx}"],
prefix: "tw-",
theme: {
extend: {
colors: {
torquoise: {
DEFAULT: "#40d9f1",
dark: "#4fcbdf",
light: "#CEE9EE",
fade: "#f1fcfe",
},
blue: {
DEFAULT: "#1992d8",
dark: "#107ebd",
light: "#2386bf",
},
black: {
DEFAULT: "#000",
theme: "#242424",
},
grey: {
DEFAULT: "#6b6b6b",
light: "#bcc4cd",
},
},
fontFamily: {
"dm-sans": ["DM Sans", "sans-serif"],
"dm-mono": ["DM Mono", "monospace"],
rubik: ["Rubik", "sans-serif"],
},
},
},
plugins: [require("@tailwindcss/typography")],
};