-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathtailwind.config.js
57 lines (56 loc) · 1.44 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} \*/
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx}",
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
padding: "1rem",
screens: {
lg: "1024px",
},
},
colors: {
"white-blue": "#dbeaf7",
"blue-light": "#E9F7F9",
turquoise: "#23B1BF",
orange: "#D2451A",
blue: "#00245A",
darkblue: "#00487C",
yellow: "#FFFCF0",
white: "#FFFFFF",
black: "#000000",
gray: "#BDBDBD",
"gray-light": "#F2F2F2",
"gray-medium": "#D9D9D9",
"gray-dark": "#4A4A4A",
transparent: "transparent",
green: "#005C62",
red: "#E53559",
},
fontSize: {
/* 16px */ sm: ["1rem", "1.4"],
/* 19px */ base: ["1.1875rem", "1.4"],
/* 20px */ lg: ["1.25rem", "1.4"],
/* 24px */ xl: ["1.5rem", "1.4"],
/* 28px */ "2xl": ["1.75rem", "1.4"],
/* 34px */ "3xl": ["2.125rem", "1.4"],
/* 36px */ "4xl": ["2.25rem", "1.4"],
},
extend: {
fontFamily: {
inter: ["var(--font-inter)", ...fontFamily.sans],
outfit: ["var(--font-outfit)", ...fontFamily.sans],
},
boxShadow: {
md: "0px 0px 4px 4px #066CFF",
},
},
},
plugins: [],
};