-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
41 lines (40 loc) · 1.18 KB
/
Copy pathtailwind.config.ts
File metadata and controls
41 lines (40 loc) · 1.18 KB
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
screens: {
//The full desktop nav needs 1120px to lay out (logo + menu + padding), so this is
//where it has to give way to the mobile menu. sm/md/lg still mean what they always do.
desktop: '1150px',
},
fontFamily: {
standard: ['Gabarito', 'Helvetica Neue', 'Helvetica'],
funky: ['Chelsea Market', 'sans-serif'],
montserrat: ['Montserrat', 'sans-serif'],
},
colors: {
background: "#FFF2DA",
foreground: "#000000",
boc_green: '#5B913A',
boc_darkgreen: "#678F44",
boc_lightgreen: "#DEDEAE",
boc_darkbrown: "#461300",
boc_medbrown: "#A2826D",
boc_lightbrown: "#FDE6BB",
boc_yellow: "#FFE8B6",
boc_slate: "#425863",
boc_earthyorange: "#fece99" //"#FF8A2A"
},
fontSize: {
'boc_logo_size': '75px', // Customize as needed
},
},
},
plugins: [],
};
export default config;