forked from aykutkardas/regexlearn.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (32 loc) · 750 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (32 loc) · 750 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
31
32
33
const defaultTheme = require('tailwindcss/defaultTheme');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/pages/**/*.{js,ts,jsx,tsx}', './src/components/**/*.{js,ts,jsx,tsx}'],
darkMode: 'class',
theme: {
extend: {
container: {
screens: {
xl: '1170px',
},
padding: '1rem',
center: true,
},
fontFamily: {
sans: ["'Open Sans'", ...defaultTheme.fontFamily.sans],
},
colors: {
regreen: {
400: '#5ff59b',
500: '#328554',
600: '#29593c',
},
jet: {
400: '#333333',
500: '#272727',
},
},
},
},
plugins: [require('@tailwindcss/forms')],
};