-
Notifications
You must be signed in to change notification settings - Fork 5
/
tailwind.config.js
60 lines (58 loc) · 1.74 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
58
59
60
// const { fontFamily } = require("tailwindcss/defaultTheme");
// const defaultTheme = require("tailwindcss/defaultTheme");
const plugin = require("tailwindcss/plugin");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
screens: {
xxs: "150px",
xs: "350px",
ne: "540px",
sm: "640px",
md: "780px",
lg: "1024px",
xl: "1280px",
"2xl": "1536px",
},
extend: {
fontFamily: {
Poppins: ['"Poppins"', "serif"],
Ubuntu: ["Ubuntu", "serif"],
},
// The project custom colors
colors: {
hadrisblue: "#21567E",
white: "#FFFFFF",
clay: "#F1F6FA",
cyan: "#90EEE1",
orange: "#FF8A57",
purple: "#7874F2",
darkPurple: "#585785",
extraDarkPurple: "#32314D",
black: "#000000",
yellow: "#ebda41",
lightpurple: "#7874F2",
darkpurple: "#32314D",
pumpkin: "#FF8A57",
cyanaqua: "#90EEE1",
iceblue: "#F1F6FA",
},
},
},
plugins: [
require("@tailwindcss/forms"),
plugin(function ({ addUtilities }) {
addUtilities({
".scrollbar-hide": {
/* Firefox */
"scrollbar-width": "none",
/* Safari and Chrome */
"&::-webkit-scrollbar": {
display: "none",
},
},
});
}),
],
};