forked from microsoft/Solution-Accelerators
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
25 lines (25 loc) · 882 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
25 lines (25 loc) · 882 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} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'neutral-1': 'var(--colorNeutralBackground1)',
'neutral-2': 'var(--colorNeutralBackground2)',
'neutral-3': 'var(--colorNeutralBackground3)',
'neutral-stroke-1': 'var(--colorNeutralStroke1)',
'neutral-stroke-2': 'var(--colorNeutralStroke2)',
'neutral-foreground-1': 'var(--colorNeutralForeground1)',
'neutral-foreground-2': 'var(--colorNeutralForeground2)',
'neutral-foreground-3': 'var(--colorNeutralForeground3)',
'neutral-foreground-disabled': 'var(--colorNeutralForegroundDisabled)',
'brand-stroke': 'var(--colorBrandStroke1)',
'brand-background': 'var(--colorBrandBackground)',
},
},
},
plugins: [],
}