-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
43 lines (43 loc) · 1.01 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
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
colors: {
'primary' : '#051D4D',
'secondary' : '#7A0BC0',
'secondary-highlight' : '#A61DFC',
'tertiary': '#91BAD6',
'primary-blend-dark' : '#172339',
'dark' : '#20262F',
'card-dark' : '#17005C',
'blue': '#1fb6ff',
'purple': '#7e5bef',
'pink': '#ff49db',
'orange': '#ff7849',
'green': '#13ce66',
'yellow': '#ffc82c',
'gray': '#8492a6',
'gray-dark': '#273444',
'gray-300': '#D1D5DB',
'gray-400': '#9CA3AF',
'gray-light': '#d3dce6',
'black': '#000000',
'white': '#ffffff',
'link-highlight': '#5BC0BE',
'blue-light': '#D9E8F6',
'see-through': '#343434'
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif'],
pridi: ['Pridi', 'serif'],
},
extend: {
backgroundImage: {
'recipe': "url('/img/recipe.jpg')",
}
},
},
plugins: [],
}