-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtailwind.config.cjs
36 lines (35 loc) · 1.05 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
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
fontFamily: {
serif: [
"Playfair Display",
"serif",
...defaultTheme.fontFamily.serif,
],
sans: [
"Space Grotesk",
"sans-serif",
...defaultTheme.fontFamily.sans,
],
mono: ["Space Mono", "monospace", ...defaultTheme.fontFamily.mono],
},
extend: {
colors: {
"spc-gold": "#FFCD00",
"spc-green": "#115740",
"spc-sea": "#d7f272",
"spc-dark": "#0e2119",
"spc-light": "#F9F9d0",
"spc-dark-green": "#0B1808",
"spc-bg-mid": "#333333",
},
},
},
plugins: [
require("@tailwindcss/forms"),
require("@tailwindcss/typography"),
],
};