-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathtailwind.config.js
More file actions
24 lines (23 loc) 路 642 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
24 lines (23 loc) 路 642 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
const colors = require('tailwindcss/colors');
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import("tailwindcss/tailwind-config").TailwindConfig } */
module.exports = {
darkMode: 'media',
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
primary: colors.sky,
gray: colors.slate,
},
fontFamily: {
dancing: ['DancingScript', 'cursive', ...defaultTheme.fontFamily.sans],
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
},
},
plugins: [require('@tailwindcss/forms')],
};