Skip to content

Instantly share code, notes, and snippets.

View needim's full-sized avatar
🍀
Building gider.im

Nedim Arabacı needim

🍀
Building gider.im
View GitHub Profile
@needim
needim / colors
Last active December 16, 2025 18:15
@variant light {
--color-background: oklch(0.96 0 0 / 1);
--color-foreground: oklch(0 0 0 / 1);
--color-shell: oklch(0.96 0 0 / 1);
--color-card: oklch(1 0 0 / 1);
--color-card-foreground: oklch(0.21 0.03 204.06 / 1);
--color-popover: oklch(0.97 0 286.38 / 1);
--color-popover-foreground: oklch(0 0 0 / 1);
--color-primary: oklch(0.33 0 0 / 1);
--color-primary-foreground: oklch(0.99 0 0 / 1);
@needim
needim / badge.json
Last active September 12, 2025 21:11
{"label":"coverage","message":"88%","schemaVersion":1,"color":"green","namedLogo":"vitest"}
@needim
needim / mood.tsx
Created June 13, 2024 11:16
Mood notoemoji
import { cn } from "@/lib/utils";
import { Tooltip } from "@radix-ui/themes";
import React, { memo, useState } from "react";
function MoodEmoji({
mood,
selected = false,
className,
variant = "default",
onClick,
@needim
needim / mediaqueries.css
Last active April 4, 2024 23:23
Device Specific CSS Media Queries Collection
/*
Based on:
1. http://stephen.io/mediaqueries
2. https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
*/
/* iPhone X in portrait & landscape */
@media only screen
and (min-device-width : 375px)
and (max-device-width : 812px)