-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
25 lines (25 loc) · 678 Bytes
/
tailwind.config.cjs
File metadata and controls
25 lines (25 loc) · 678 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
module.exports = {
content: ['./src/**/*.{html,js}'],
theme: {
extend: {
fontFamily: {
raleway: ['Raleway'],
},
},
screens: {
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
// Use the 'dark:' prefix to apply styles when dark mode is enabled. See:
// https://tailwindcss.com/docs/dark-mode
'dark-mode': {
raw: '(prefers-color-scheme: dark)',
},
// Use the 'print:' prefix for print-only styles. See:
// https://tailwindcss.com/docs/hover-focus-and-other-states#print-styles
print: { raw: 'print' },
},
},
plugins: [require('@tailwindcss/typography')],
}