-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtailwind.config.js
More file actions
33 lines (33 loc) · 887 Bytes
/
tailwind.config.js
File metadata and controls
33 lines (33 loc) · 887 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{html,ts}",
],
theme: {
extend: {
colors: {
'ub-grey': '#111111',
'ub-warm-grey': '#AEA79F',
'ub-cool-grey': '#333333',
'ub-orange': '#E95420',
'ub-lite-abrgn': '#77216F',
'ub-med-abrgn': '#5E2750',
'ub-drk-abrgn': '#2C001E',
'ub-window-title': '#201f1f',
'ub-gedit-dark': '#021B33',
'ub-gedit-light': '#003B70',
'ub-gedit-darker': '#010D1A',
'ubt-grey': '#F6F6F5',
'ubt-warm-grey': '#AEA79F',
'ubt-cool-grey': '#333333',
'ubt-blue': '#3465A4',
'ubt-green': '#4E9A06',
'ubt-gedit-orange': '#F39A21',
'ubt-gedit-blue': '#50B6C6',
'ubt-gedit-dark': '#003B70',
'ubb-orange': '#E95420',
},
},
},
plugins: [],
}