generated from 202212-GIZ-YE-FEW/capstone-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
tailwind.config.js
47 lines (46 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
38
39
40
41
42
43
44
45
46
47
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// * not being used!
// "./app/**/*.{js,ts,jsx,tsx}",
// "./pages/**/*.{js,ts,jsx,tsx}",
// "./components/**/*.{js,ts,jsx,tsx}",
// Including `src` directory:
"./src/**/*.{js,jsx}",
],
theme: {
screens: {
xxs: "150px",
xs: "350px",
ne: "540px",
sm: "640px",
md: "780px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
extend: {
// Project custom colors
colors: {
black: "#000000",
cyanaqua: "#90EEE1",
iceblue: "#F1F6FA",
purple: "#7874F2",
"purple-almostblack": "#32314D",
"purple-dark": "#585785",
"purple-light": "#7874F2",
pumpkin: "#FF8A57",
skyblue: "#1B96EF",
white: "#FFFFFF",
},
// Project custom fonts
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
backgroundImage: {
"background-title": "url('/background-title.svg')",
},
},
plugins: [],
},
}