generated from AMRC-FactoryPlus/acs-template
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.js
More file actions
25 lines (25 loc) · 811 Bytes
/
tailwind.config.js
File metadata and controls
25 lines (25 loc) · 811 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ["class", '[data-theme="dark"]'],
content: ["./src/**/*.{js,jsx,ts,tsx,mdx,md}", "./docs/**/*.mdx"],
theme: {
extend: {
colors: {
'brand-black': '#444950',
'brand': '#131E29',
'brand-90': '#2B353E',
'brand-80': '#424B54',
'brand-70': '#5A6269',
'brand-60': '#71787F',
'brand-50': '#898F94',
'brand-40': '#A1A5A9',
'brand-30': '#B8BBBF',
'brand-20': '#D0D2D4',
'brand-10': '#E7E9EA',
'brand-5': '#F3F4F4',
'brand-3': '#F8F8F9'
},
},
},
corePlugins: {preflight: false},
};