-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
69 lines (66 loc) · 1.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
const colors = require('tailwindcss/colors')
module.exports = {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
'./docs/.vitepress/**/*.{vue,js,ts,jsx,tsx}',
// When consuming apps use the library's Tailwind config, we'll include the library in the purge
'./node_modules/@ais-public/ais-components/src/**/*.{vue,js,ts,jsx,tsx}'
],
// darkMode: false,
theme: {
extend: {
colors: {
ui: {
gold: '#FFCD00', // UIDS primary
aqua: '#00A9E0', // UIDS print variants
seafoam: '#00AF66',
orange: '#FF8200',
},
'ui-gray': {
50: '#F3F3F3', // UIDS $light
100: '#CACACA', // UIDS $grey-light
DEFAULT: '#737373', // UIDS $grey
cool: '#63666A', // UIDS $brand-cool-gray
900: '#151515', // UIDS $secondary
},
default: {
DEFAULT: '#63666A',
separator: '#CACACA',
},
info: { // UIDS variants
DEFAULT: '#00558C',
light: '#F2FAFF',
},
success: {
DEFAULT: '#00664F',
light: '#EBFFFA',
},
warning: {
DEFAULT: '#FFCD00',
light: '#FFFAE5',
},
danger: {
DEFAULT: '#BD472A',
light: '#FBEEEB',
},
primary: {
DEFAULT: '#FFCD00',
},
secondary: {
DEFAULT: '#151515',
},
},
flexGrow: {
'2': 2
},
scale: {
'98': '.98',
'99': '.99',
'101': '1.01',
'102': '1.02'
},
},
},
plugins: [],
}