-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (35 loc) · 917 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (35 loc) · 917 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
34
35
36
/** @type {import('tailwindcss').Config} */
const defaultTheme = require('tailwindcss/defaultTheme');
// Settings
const settingsScreens = require('./tailwind.settings.screens');
const settingsFontSizes = require('./tailwind.settings.fontSizes');
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
screens: settingsScreens,
fontSize: settingsFontSizes,
extend: {
fontFamily: {
serif: ['Press Start 2P', ...defaultTheme.fontFamily.serif],
},
colors: {
inherit: 'inherit',
transparent: 'transparent',
current: 'currentColor',
black: '#000000',
white: '#FFFFFF',
candyPurple: '#',
pageBG: 'var(--pageBG)',
pageText: 'var(--pageText)',
},
borderWidth: {
10: '10px',
12: '12px',
},
},
},
plugins: [],
};