forked from lhamouche/eirbware-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (40 loc) · 938 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
36
37
38
39
40
41
42
/** @type {import('tailwindcss').Config} */
const colors = require('tailwindcss/colors')
export default {
content: [
"./index.html",
"./src/**/*.{vue,js}",
],
theme: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
raleway: ["Raleway", "sans-serif"],
},
extend: {
screens: {
'xs': '410px',
},
colors: {
'text': '#1D0202',
'background': '#FFFFFF',
'primary': '#FFE41E',
// 'secondary': '#D7F581',
// 'secondary': '#A1DDA6',
// 'secondary': '#E9DD84',
'secondary': '#FFC86D',
// 'accent': '#C8A509',
// 'accent': '#6BC994',
'accent': '#E9D74E',
// 'accent': '#F7D797',
},
rotate: {
'18': '18deg',
},
screens: {
'tall': { 'raw': '(min-height: 800px)' },
'2tall': { 'raw': '(min-height: 1000px)' },
},
},
},
plugins: [],
}