-
-
Notifications
You must be signed in to change notification settings - Fork 267
/
tailwind.config.js
51 lines (49 loc) · 1.11 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
const plugin = require('tailwindcss/plugin');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
// Or if using `src` directory:
'./src/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
screens: {
sm: '576px',
md: '768px',
lg: '992px',
xl: '1200px',
},
extend: {
colors: {
themePrimary: '#3ed6f0',
themeSecondary: '#252e3e',
themeGray200: '#121212',
themeGray800: '#e2e2e2',
burntOrange500: 'hsl(14, 55%, 45%, 1)',
white: '#f7f7f7',
},
maxWidth: {
girderWidth: '700px',
},
fontFamily: {
dinCondensed: '"DIN Condensed Bold"',
encodeSans: '"Encode Sans"',
},
},
},
plugins: [
plugin(({ matchUtilities, theme }) => {
matchUtilities(
{
'text-shadow': value => ({
textShadow: value,
}),
},
{ values: theme('textShadow') },
);
}),
],
important: '#__next',
};