-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
49 lines (48 loc) · 1.22 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
const colors = require("tailwindcss/colors");
const defaultTheme = require("tailwindcss/defaultTheme");
module.exports = {
mode: "jit",
purge: ["./pages/**/*.{js,ts,jsx,tsx}", "./components/**/*.{js,ts,jsx,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
colors: {
primary: colors.blue,
"blue-gray": colors.blueGray,
mainGreen: '#95f985',
secondGreen: '#d8fec2',
thirdGreen: '#c9fea9',
fourthGreen: '#5ffb01',
},
fontFamily: {
sans: ["Inter var", ...defaultTheme.fontFamily.sans],
title: "Ubuntu",
},
backgroundSize: {
"size-200": "200% 200%",
},
backgroundPosition: {
"pos-0": "0% 0%",
"pos-100": "100% 100%",
},
animation: {
"bounce-right": "bounce-right 1s infinite",
},
keyframes: {
"bounce-right": {
"0%, 100%": {
transform: "translateX(25%)",
animationTimingFunction: "cubic-bezier(0.8,0,1,1)",
},
"50%": {
transform: "none",
animationTimingFunction: "cubic-bezier(0,0,0.2,1)",
},
},
},
},
},
variants: {
extend: {},
},
};