This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# City Lights Ghostty Config (based on https://github.com/Yummygum) | |
background = "#1D252C" | |
foreground = "#b7c5d3" | |
cursor-color = "#5ec4ff" | |
cursor-text = "#1D252C" | |
selection-background = "#28323a" | |
selection-foreground = "#b7c5d3" | |
palette = 0=#41505E |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { defineConfig } from '@pandacss/dev'; | |
import { fluidTypography } from './fluidTypography'; | |
declare module '@pandacss/dev' { | |
interface ThemeConfig { | |
fluidFont: Record<string, FluidFontProps>; | |
} | |
} | |
const config = defineConfig({ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { defineUtility } from '@pandacss/dev'; | |
type Unit = 'px' | 'rem' | 'em'; | |
type VwUnit = 'vw' | 'vh' | '%'; | |
interface FluidFontConfig { | |
defaultUnit: Unit; | |
defaultVwUnit: VwUnit; | |
defaultMinVw: number; | |
defaultMaxVw: number; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
root: true, | |
env: { browser: true, es2020: true }, | |
extends: [ | |
'eslint:recommended', | |
'plugin:@typescript-eslint/recommended', | |
'plugin:react/recommended', | |
'prettier' | |
], | |
ignorePatterns: ['dist', '.eslintrc.cjs'], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Add element to markup | |
<div id="resize"> | |
<svg viewBox="0 0 20 20"> | |
<path d="...icon..." /> | |
</svg> | |
</div> | |
// Styling | |
#resize { | |
position: absolute; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const useArrayState = <T>(initialState: T[] = []) => { | |
const [state, setState] = useState<T[]>(initialState); | |
const add = (newValue: T) => { | |
setState((currentState) => [...currentState, newValue]); | |
}; | |
const remove = (index: number) => { | |
setState((currentState) => { | |
const newState = [...currentState]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$breakpoints: ( | |
xs: 576px, | |
sm: 768px, | |
md: 992px, | |
lg: 1200px | |
); | |
@mixin min($breakpoint) { | |
@if map-has-key($breakpoints, $breakpoint) { | |
@media (min-width: map-get($breakpoints, $breakpoint)) { |