forked from OpenMobileAlliance/oma-knowledge-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
96 lines (95 loc) · 2.22 KB
/
tailwind.config.ts
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
import type { Config } from 'tailwindcss'
import defaultTheme from 'tailwindcss/defaultTheme'
export default <Partial<Config>>{
content: [
'ui.config/*.ts',
'plugins/*.ts'
],
theme: {
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
a: {
color: theme('colors.oma-blue.300'),
textDecoration: 'none',
},
},
},
}),
colors: {
'golden': '#E7D6C2',
'oma-red': {
50: '#f2d8d7',
100: '#e4b1af',
200: '#d78a88',
300: '#c96360',
400: '#c3504c',
500: '#bc3c38',
600: '#a93632',
700: '#96302d',
800: '#842a27',
900: '#712422',
950: '#5e1e1c'
},
'oma-purple': {
50: '#e6dcec',
100: '#cdbad9',
200: '#b497c6',
300: '#9b75b3',
400: '#8f63aa',
500: '#8252a0',
600: '#754a90',
700: '#684280',
800: '#5b3970',
900: '#4e3160',
950: '#412950'
},
'oma-yellow': {
50: '#f8eedc',
100: '#f1ddba',
200: '#ebcb97',
300: '#e4ba75',
400: '#e0b263',
500: '#dda952',
600: '#c7984a',
700: '#b18742',
800: '#9b7639',
900: '#856531',
950: '#6f5529'
},
'oma-cyan': {
50: '#e9f6f3',
100: '#d2ede7',
200: '#bce4dc',
300: '#a5dbd0',
400: '#9ad7ca',
500: '#8fd2c4',
600: '#81bdb0',
700: '#72a89d',
800: '#649389',
900: '#567e76',
950: '#486962'
},
'oma-blue': {
50: '#cddcec',
100: '#9ab8da',
200: '#6895c7',
300: '#3571b5',
400: '#1c60ab',
500: '#034ea2',
600: '#034692',
700: '#023e82',
800: '#023771',
900: '#022f61',
950: '#022751'
},
}
}
},
safelist: [
{
pattern: /gap-.*/
}
]
}