-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
30 lines (27 loc) · 929 Bytes
/
index.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
module.exports = require("tailwindcss/plugin")(
function ({}) {
},
{
theme: {
extend: {
colors: {
// maroon
'maroon' : '#8E1000',
// orange
'bright-orange' : '#F28C00', // Spect8 Logo
'pale-orange' : '#F4BE76',
'logo-orange': '#fe5000', // EXACT Logo
// gray
'dark-gray': '#363F51',
// browns
'pale-brown' : '#B99A7B',
'beige' : '#F8F4EA',
},
fontFamily: {
sans: ['Noto Sans', ...defaultTheme.fontFamily.sans],
roboto: ['Roboto', ...defaultTheme.fontFamily.sans],
},
}
}
}
);