generated from SpringfieldCollege-MPCS/CISC288-FinalWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
39 lines (38 loc) · 936 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.html", "./theme/**/*.html", "./themes/"],
theme: {
extend: {
colors: {
'primary': '#650505',
'background': '#FFF8E4',
'ribbon': '#D68C8C',
'darkRibbon': '#BE1F3C',
'tan': '#D4C0AD',
'textcolor': '#2E180F',
'storebg': '#D68C8C'
},
fontFamily: {
'navtext': ['Inter', 'sans-serif'],
'bodytext': ['Faustina', 'serif'],
'secheader': ['Merriweather','serif'],
'buttontext': ['IBM Plex Sans','serif']
},
screens: {
'mobile': '320px',
'tablet': '768px',
'laptop': '1024px',
'desktop': '1440px'
},
rotate: {
'67.5': '67.5deg',
'135' : '135deg',
'225': '225deg'
}
}
},
variants: {},
plugins: [
require('@tailwindcss/typography'),
],
};