-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtailwind.config.js
More file actions
35 lines (34 loc) · 1004 Bytes
/
tailwind.config.js
File metadata and controls
35 lines (34 loc) · 1004 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
31
32
33
34
35
const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
const { join } = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html}'),
...createGlobPatternsForDependencies(__dirname),
],
theme: {
extend: {
colors: {
primary: {
light: '#fdba74', // orange-300
default: '#f97316', // orange-500
mid: '#ea580c', // orange-600
dark: '#ea580c', // orange-700
},
slate: {
lighter: '#cbd5e1', // slate-300
light: '#94a3b8', // slate-400
medium: '#475569', // slate-600
dark: '#334155', // slate-700
default: '#1e293b', // slate-900
},
gray: {
lighter: '#6b7280', // gray-500
light: '#4b5563', // gray-600
default: '#111827', // gray-900
}
}
},
},
plugins: [],
};