-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
53 lines (53 loc) · 1.26 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: "selector",
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
transitionTimingFunction: {
"out-bounce": "cubic-bezier(0.34,1.56,0.64,1)",
},
colors: {
gemini: {
blue: "#5684D1",
purple: "#9168C0",
"blue-light": "#1BA1E3",
},
},
backgroundImage: () => ({
gemini: `linear-gradient(in oklch to bottom right, #9168C0, #5684D1, #1BA1E3)`,
}),
typography: {
DEFAULT: {
css: {
"code::before": false,
"code::after": false,
},
},
},
},
},
plugins: [require("@tailwindcss/typography"), require("tailwindcss-animate")],
variants: {
scrollbar: ["rounded"],
},
plugins: [
require("@tailwindcss/typography"),
require("tailwindcss-animate"),
function ({ addUtilities }) {
addUtilities({
".no-scrollbar::-webkit-scrollbar": {
display: "none",
},
".no-scrollbar": {
"-ms-overflow-style": "none",
"scrollbar-width": "none",
},
});
},
],
};