Update styles with Inter font
This commit is contained in:
+21
-4
@@ -13,6 +13,9 @@ export default {
|
||||
},
|
||||
},
|
||||
extend: {
|
||||
fontFamily: {
|
||||
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
|
||||
},
|
||||
colors: {
|
||||
border: "hsl(var(--border))",
|
||||
input: "hsl(var(--input))",
|
||||
@@ -63,6 +66,14 @@ export default {
|
||||
md: "calc(var(--radius) - 2px)",
|
||||
sm: "calc(var(--radius) - 4px)",
|
||||
},
|
||||
backgroundImage: {
|
||||
'gradient-cyber': 'var(--gradient-cyber)',
|
||||
'gradient-subtle': 'var(--gradient-subtle)',
|
||||
},
|
||||
boxShadow: {
|
||||
'glow-cyan': 'var(--glow-cyan)',
|
||||
'glow-blue': 'var(--glow-blue)',
|
||||
},
|
||||
keyframes: {
|
||||
"accordion-down": {
|
||||
from: {
|
||||
@@ -100,19 +111,25 @@ export default {
|
||||
opacity: "1"
|
||||
}
|
||||
},
|
||||
"glow": {
|
||||
"0%, 100%": {
|
||||
opacity: "1",
|
||||
},
|
||||
"50%": {
|
||||
opacity: "0.5",
|
||||
}
|
||||
},
|
||||
},
|
||||
animation: {
|
||||
"accordion-down": "accordion-down 0.2s ease-out",
|
||||
"accordion-up": "accordion-up 0.2s ease-out",
|
||||
"fade-in": "fade-in 0.3s ease-out",
|
||||
"scale-in": "scale-in 0.2s ease-out",
|
||||
},
|
||||
boxShadow: {
|
||||
'card': 'var(--shadow-card)',
|
||||
'hover': 'var(--shadow-hover)',
|
||||
"glow": "glow 2s ease-in-out infinite",
|
||||
},
|
||||
transitionTimingFunction: {
|
||||
'smooth': 'cubic-bezier(0.4, 0, 0.2, 1)',
|
||||
'bounce': 'cubic-bezier(0.68, -0.55, 0.265, 1.55)',
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user