forked from 0xsequence/docs-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 825 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 825 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
/** @type {import('tailwindcss').Config} */
module.exports = {
corePlugins: {
preflight: false, // disable Tailwind's reset
},
content: ['./src/**/*.{js,jsx,ts,tsx}', '../docs/**/*.mdx'], // markdown stuff is in ../docs, not /src
darkMode: ['class', '[data-theme="dark"]'], // hooks into docusaurus' dark mode settigns
theme: {
extend: {
fontFamily: {
['inter']: 'Inter',
['roboto']: 'Roboto Mono',
},
screens: {
['mobile-nav']: '997px'
},
colors: {
['off-black']: '#111111',
['off-white']: '#F8F5F1',
['white-80']: '#cfcfcf',
['white-50']: '#888888',
['white-25']: '#4D4D4D',
['black-80']: '#333333',
['black-50']: '#808080',
['black-25']: '#BFBFBF',
}
},
},
plugins: [],
}