forked from codyde/ld-netlify-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (35 loc) · 862 Bytes
/
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
module.exports = {
mode: 'jit',
content:
["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
fontFamily: {
audimat: ["Audimat"],
sohne: ["Sohne"],
},
colors: {
aws: '#FF9900',
ldblue: '#3DD6F5',
lddblue: '#405BFF',
ldred: '#FF386B',
ldpurple: '#A34FDE',
ldyellow: '#EBFF38',
ldgray: '#282828',
ldgraytext: '#BCBEC0',
ldhl: '#EBFF38',
ldgdcol1: '#DEE8C8',
ldgdcol2: '#A7B6EA',
ldinput: '#212121',
ldinputback: '#282828'
},
backgroundImage: {
'ldls': "url('../public/LightSpeed_bg.png')",
'ldspotsgray': "url('../public/ld-bg-gray.png')",
'ldspotsyellow': "url('../public/ld-bg-yellow.png')",
'ldbg': "url('../public/ld-bg.png')"
},
},
},
plugins: [],
}