forked from prxshetty/hugo-noir
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (28 loc) · 904 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (28 loc) · 904 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
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors');
module.exports = {
darkMode: 'class',
content: ["./layouts/**/*.html", "./content/**/*.{html,md}"],
theme: {
extend: {
fontFamily: {
sans: ['Space Grotesk', 'sans-serif'],
},
colors: {
'bg-primary-light': colors.white,
'text-primary-light': colors.neutral[800],
'text-secondary-light': colors.neutral[600],
'border-primary-light': colors.neutral[300],
'accent-light': colors.sky[600],
'bg-primary-dark': '#121212',
'bg-secondary-dark': '#1a1a1a',
'bg-tertiary-dark': '#1a1a1a',
'text-primary-dark': colors.neutral[100],
'text-secondary-dark': colors.neutral[400],
'border-primary-dark': colors.neutral[700],
'accent-dark': colors.sky[500],
},
},
},
plugins: [],
}