-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (32 loc) · 897 Bytes
/
tailwind.config.js
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
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme')
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
// - Dark cyan: hsl(158, 36%, 37%)
// - Cream: hsl(30, 38%, 92%)
// - Very dark blue: hsl(212, 21%, 14%)
// - Dark grayish blue: hsl(228, 12%, 48%)
// - White: hsl(0, 0%, 100%)
colors: {
'dark-cyan': 'hsl(158, 36%, 37%)',
'cream': '#F2EAE2',
'very-dark-blue': 'hsl(212, 21%, 14%)',
'dark-grayish-blue': 'hsl(228, 12%, 48%)',
'white': 'hsl(0, 0%, 100%)',
},
fontFamily: {
'sans': ['Montserrat', ...defaultTheme.fontFamily.sans],
'display': ['Fraunces', ...defaultTheme.fontFamily.sans],
},
fontSize: {
base: "14px"
}
},
},
plugins: [],
}