-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
42 lines (39 loc) · 978 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
42 lines (39 loc) · 978 Bytes
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");
const { fontFamily } = require("tailwindcss/defaultTheme");
const tailwindConfig = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
extend: {
fontFamily: {
sans: ["var(--font-inter)", ...fontFamily.sans],
display: ["var(--font-prompt)", ...fontFamily.serif],
},
},
colors: {
white: "#FAFDFF",
darkwhite: "#D9D9D9",
black: "#181818",
yellow: "#FFB70A",
darkYellow: "#D69700",
},
scale: {
101: "1.01",
103: "1.03",
},
spacing: {
"90screen": "90vh",
"50screen": "50vh",
},
aspectRatio: {
golden: [1, 1.618],
},
},
},
plugins: [require("@tailwindcss/typography"), require("@tailwindcss/forms")],
};
module.exports = tailwindConfig;