-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
44 lines (43 loc) · 1.13 KB
/
tailwind.config.ts
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
import type { Config } from 'tailwindcss'
const config: Config = {
darkMode: 'class',
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
borderRadius: {
perfil: '100% 40% 55% 35%',
},
blur: {
full: '160px',
},
fontFamily: {
Roboto: ['var(--font-roboto)'],
MsMadi: ['var(--font-msmadi)'],
},
colors: {
primary: '#10B981',
secundary: '#121214',
bgdark: '#121214',
bgdarksecondary: '#1a1a1e',
textdark: '#EEEEEE',
bglight: '#F4F4F5',
bglightsecondary: '#E4E4E7',
textlight: '#262626',
},
boxShadow: {
shadowlight:
'0 0px 4px 0px rgba(000, 000, 000, 0.5), 0 3px 4px 1px rgba(000, 000, 000, 0.1)',
shadowdark:
'0 0px 8px 0px rgba(000, 000, 000), 0 3px 4px 1px rgba(000, 000, 000, 1)',
hover:
'0 4px 7px 4px rgba(31,182,255, 0.5), 0 4px 4px 2px rgba(31,182,255, 0.1)',
},
},
},
plugins: [],
}
export default config