-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
37 lines (36 loc) · 1.05 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
/** @type {import('tailwindcss').Config} */
import fluid, { extract, screens } from "fluid-tailwind";
export default {
content: {
files: ["./src/**/*.{html,js,jsx}", "./index.html"],
extract,
},
theme: {
screens,
extend: {
colors: {
strongCyan: "hsl(172, 67%, 45%)",
veryDarkCyan: "hsl(183, 100%, 15%)",
darkGrayishCyan: "hsl(186, 14%, 43%)",
grayishCyan: "hsl(184, 14%, 56%)",
lightGrayishCyan: "hsl(185, 41%, 84%)",
veryLightGrayishCyan: "hsl(189, 41%, 97%)",
white: "hsl(0, 0%, 100%)",
},
fontFamily: {
custom: ["space mono", "sans-serif"],
},
backgroundImage: {
logo: "url('../src/components/assets/logo.svg')",
dollar: "url('../src/components/assets/icon-dollar.svg')",
person: "url('../src/components/assets/icon-person.svg')",
},
backgroundPosition: {
logoMobile: "center top 2rem",
logoDesktop: "center top 10rem",
input: "calc(0% + 1rem) center",
},
},
},
plugins: [fluid],
};