-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
33 lines (32 loc) · 1006 Bytes
/
tailwind.config.js
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
import defaultTheme from 'tailwindcss/defaultTheme';
/** @type {import('tailwindcss').Config} */
export default {
darkMode: 'class',
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
plugins: [],
theme: {
extend: {
fontFamily: {
body: ['"Source Sans 3"', ...defaultTheme.fontFamily.sans],
heading: ['Nunito', ...defaultTheme.fontFamily.sans],
mono: ['Courier New', 'Courier', 'monospace'],
},
colors: {
light: '#b3efff',
bright: '#00cfff',
medium: '#046b99',
dark: '#1c304a',
// character classifications
'pwl-number': '#f1f227', // yellow
'pwl-uppercase': '#00CFFF', // blue
'pwl-lowercase': '#4add8c', // green
'pwl-special': '#ff6347', // red
},
boxShadow: {
light: '4px 4px 8px 0px rgba(0, 0, 0, 0.2)',
dark: '4px 4px 8px 0px rgba(179, 239, 255, 0.15)',
'growing-underline': 'inset 0 -2px 0 0 currentColor',
},
},
},
};