-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
50 lines (48 loc) · 1.25 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
const { createGlobPatternsForDependencies } = require('@nrwl/react/tailwind');
const { m } = require('framer-motion');
const { join } = require('path');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
join(
__dirname,
'{src,pages,components}/**/*!(*.stories|*.spec).{ts,tsx,html}'
),
...createGlobPatternsForDependencies(__dirname),
],
theme: {
prefix: 'pd',
extend: {
colors: {
critical: '#EF4444',
high: '#D97706',
medium: '#CA8A04',
low: '#3F3F46',
info: '#3F3F46',
blue: {
600: '#2563EB',
900: '#1E3A8A',
},
gray: {
700: '#3F3F46',
800: '#27272A'
},
risk: {
critical: 'rgba(220, 38, 38, 0.3)',
high: 'rgba(217, 119, 6, 0.3)',
medium: 'rgba(202, 138, 4, 0.3)',
low: '#27272A',
info: '#18181B'
},
status: {
'jira-create': '#1E3A8A',
'jira-open': '#27272A'
}
},
fontFamily: {
'brand': 'Inter, sans-serif'
}
},
},
plugins: [],
};