This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtailwind.config.js
107 lines (101 loc) · 3.3 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/** @type {import('tailwindcss').Config} */
import defaultTheme from 'tailwindcss/defaultTheme'
import typography from '@tailwindcss/typography';
import {addDynamicIconSelectors} from '@iconify/tailwind'
const {nextui} = require("@nextui-org/react");
export default {
mode: 'jit', // https://v2.tailwindcss.com/docs/just-in-time-mode
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}"
],
theme: {
extend: {
animation: {
'spin-slow': 'spin 5s linear infinite',
},
colors: {
'blue-grey': 'rgb(85,121,235)',
'slider-blue': '#61d0f0',
'slider-red': 'rgb(184, 42, 21)',
'slider-pink': '#f56e83'
// 'slider-blue':'#61d0f0',
// 'slider-red':'rgb(184, 42, 21)',
// 'slider-pink':'#f56e83'
},
maxWidth: {
'11': '2.75rem',
'40': '10rem',
'60': '15rem',
'80': '20rem',
'86': '22rem',
'96': '24rem',
'1/4': '25%',
'1/5': '20%',
'1/2': '50%',
'2/5': '40%',
'3/4': '75%',
'screen-105': '105vw',
},
minWidth: {
'11': '2.75rem',
'12': '3rem',
'40': '10rem',
'60': '15rem',
'80': '20rem',
'86': '22rem',
'96': '24rem',
'1/2': '50%',
'1/4': '25%',
'1/5': '20%',
'2/5': '40%',
'3/4': '75%',
'screen-105': '105vw',
},
width: {
'screen-105': '105vw',
'26': '6.5rem',
},
maxHeight: {
'screen-105': '105vh',
},
height: {
'screen-105': '105vh',
},
minHeight: {
'12': '3rem',
'24': '6rem',
'96': '24rem',
},
transitionDuration: {
'1500': '1500ms',
'2500': '2500ms',
'2000': '2000ms',
'3000': '3000ms',
'4000': '4000ms',
'5000': '5000ms',
},
brightness: {
25: '.25',
},
fontFamily: {
'borel': ['borel', ...defaultTheme.fontFamily.sans],
},
backgroundImage: {
// we have no copyright. limited to personal use. do not put them on a website that is public accessible
// see https://www.behance.net/gallery/84818869/Fuzzies-vol-1
'balloon': "url('/src/assets/bg/no-copyright/959e3384818869.5d6bfdf2b5e1b.png')",
'walk-in-green': "url('/src/assets/bg/no-copyright/84974784818869.5d6bfdf4e8260.png')",
'noise': "url('/src/assets/bg/noise.svg')",
'noise-lg': "url('/src/assets/bg/noise-lg.svg')",
}
},
},
darkMode: "class",
plugins: [
typography,
addDynamicIconSelectors(),
nextui(),
],
}