-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
26 lines (25 loc) · 811 Bytes
/
tailwind.config.js
File metadata and controls
26 lines (25 loc) · 811 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
/* eslint-disable @typescript-eslint/no-var-requires */
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{vue,js,ts}"],
darkMode: "class",
theme: {
extend: {
fontFamily: {
sans: ["'Nunito Sans'", ...defaultTheme.fontFamily.sans],
serif: [...defaultTheme.fontFamily.serif],
mono: [...defaultTheme.fontFamily.mono],
},
colors: {
"ut-grey": "#151515",
"ut-grey-lighter": "#1e1e1e",
},
spacing: {
256: "48rem",
128: "32rem",
},
},
},
plugins: [require("@tailwindcss/typography")],
};