-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
43 lines (43 loc) · 1.06 KB
/
tailwind.config.js
File metadata and controls
43 lines (43 loc) · 1.06 KB
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{rs,html,css}",
"./assets/**/*.{html,css}",
],
mode: 'development',
theme: {
extend: {
fontFamily: {
iranSharp: ['IRANSharp', 'sans-serif'],
vazir: ["vazir", "sans-serif"],
sharp: ["IRANSharp", "sans-serif"],
},
colors: {
customGray: '#B7B7B7',
customBlue: '#21A9B7',
customPurple: '#8962F5',
customDarkGray: '#1B1B1D',
customBlack: '#1C1C1C',
customLightGray: "#5C5C5C",
customWhite: "#E6E8EC",
customWhiteLight: "#DFDFDF",
dropdowngrey: "#C4C2CF",
customOrange: "#EBA01C",
},
height: {
"10rem": "10rem",
"20rem": "20rem",
},
animation: {
'dot-spinner': 'dot-spinner 1.2s linear infinite',
},
keyframes: {
'dot-spinner': {
'0%, 20%, 80%, 100%': { 'background-color': '#D9D9D9' },
'50%': { 'background-color': '#21A9B7' },
},
},
},
},
plugins: [],
}