-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
62 lines (60 loc) · 1.28 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,mjs}'],
darkMode: 'class',
theme: {
extend: {
screens: {
xsm: '450px',
sm: '640px',
md: '768px',
lg: '1024px',
xl: '1280px',
'2xl': '1536px',
'3xl': '1920px',
},
colors: {
main: '#A6FAFF',
mainHover: '#79F7FF',
mainActive: '#00E1EF',
mainAccent: '#4d80e6', // not needed for shadcn components
overlay: 'rgba(0,0,0,0.8)',
navColor: '#fed36b',
darkNavColor: '#e9b845',
// light mode
bg: '#dfe5f2',
lightBg: '#fff',
text: '#000',
border: '#000',
// dark mode
darkBg: '#272933',
darkText: '#eeefe9',
darkBorder: '#000',
darkLightBg: 'bg-gray-800',
},
borderRadius: {
base: '0.75rem',
},
boxShadow: {
buttonLight: '2px 2px 0px 0px rgba(0, 0, 0, 1)',
buttonDark: '2px 2px 0px 0px rgba(0, 0, 0, 1)',
cardLight: '6px 6px 0px 0px rgba(0, 0, 0, 1)',
},
translate: {
boxShadowX: '-6px',
boxShadowY: '6px',
reverseBoxShadowX: '6px',
reverseBoxShadowY: '-6px',
},
fontFamily: {
sans: ['"Public Sans"', 'sans-serif'],
},
fontWeight: {
base: '400',
medium: '700',
heading: '900',
},
},
},
plugins: [],
};