-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
46 lines (45 loc) · 1.08 KB
/
tailwind.config.ts
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
44
45
46
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
fontSize: {
sm: '1rem',
base: '1.1rem',
'hp-sm': '1.1rem',
'hp-lg': '2rem',
'hp-xl': '3.5rem',
},
extend: {
dropShadow: {
'5': '0 5px 5px rgba(0,0,0,0.50)',
'10': '0 10px 10px rgba(0,0,0,0.50)',
},
fontFamily: {
sans: ["var(--font-medium)"],
},
lineHeight: {
'tight': '1.2',
'loose': '1.4',
},
colors: {
'work-button-bg': '#BEBEBE',
'hp-slide-bg': '#ebebeb',
'hover-socials': '#8e8e8e',
'footer-text': '#414141',
'esrs-text': '#303030',
'purple': '#7F9DFF',
'esrs-gray': '#EFEFEF',
'esrs-hover': '#848484',
'esrs-dark-gray': '#686868',
'esrs-black': '#151515',
'hover': '#686868',
}
},
},
plugins: [require('@tailwindcss/typography')],
};
export default config;