instruction
stringclasses
84 values
input
stringclasses
1 value
output
stringlengths
29
2.14M
source
stringclasses
21 values
type
stringclasses
9 values
Write CSS keyframe animations for a text fade-in with upward movement on page load.
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .animate-fade-up { animation: fadeInUp 0.7s ease forwards; } .animate-fade-up:nth-child(2) { animation-delay: 0.15s; } .animate-fade-up:nth-child(3) { animation-delay: 0.30s; }
handcrafted
animation
Create a CSS glassmorphism card style for a dark website.
.glass-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 2rem; box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: transform 0.3s ease, box-shadow 0.3s ease; } .glass-card:ho...
handcrafted
animation
Write JavaScript for a navbar that becomes solid/dark on scroll.
const navbar = document.querySelector('.navbar'); window.addEventListener('scroll', () => { navbar.classList.toggle('navbar--scrolled', window.scrollY > 50); }); /* CSS: .navbar { position:fixed; top:0; width:100%; background:transparent; transition:background 0.3s ease; z-index:1000; } .navbar--scrolled { background...
handcrafted
animation
Create an Intersection Observer scroll animation that triggers fade-in when elements enter the viewport.
const observer = new IntersectionObserver( (entries) => entries.forEach(e => { if(e.isIntersecting){ e.target.classList.add('visible'); observer.unobserve(e.target); } }), { threshold: 0.15 } ); document.querySelectorAll('.reveal').forEach(el => observer.observe(el)); /* CSS: .reveal { opacity:0; transform:translat...
handcrafted
animation
Build a CSS animated gradient background for a hero section.
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .hero { min-height: 100vh; background: linear-gradient(135deg,#0a0a0f,#1a0533,#0d1a3a,#001a1a); background-size: 400% 400%; animation: gradientShift 12s ease inf...
handcrafted
animation
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors--brand-color:#e894ff;--colors--white:#fbfbfb;--pure-white:#fff;--brown:#291900;--dark-purple:#23002b;--dark-green:#002629;--width--100:100%;--spacing--7:7rem;--spacing--025:.25rem;--spacing--2:2rem;--colors--black:#121212;--font-size--m:64px;--spacing--1:1rem;--spacing--3:3rem;--spacing--4:4rem;--spaci...
https://www.champions4good.club/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --heading-color:#636f3d;--main-green:#404f1d;--green-light:#7c914c;--padding-web:1.88em;--beige:#f4ede6;--white:#fff;--padding-mobile:1em}
https://www.farmminerals.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --cc-font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";--cc-modal-border-radius:.5rem;--cc-btn-border-radius:.4rem;--cc-modal-transition-duration:.25s;--cc-link-color:var(--cc-btn-primary-bg);--cc-modal-margin:1rem;--...
https://shift5.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --_colors---base-100--100:#fff8ed;--_fonts---font-body:"GT America Extended",Arial,sans-serif;--_colors---base-1000--100:#312726;--_fonts---font-display:"GT America Expanded",Arial,sans-serif;--_fonts---h1--size:7.222em;--_fonts---h1--line-height:84.615%;--_fonts---h1--letter-spacing:-.08em;--_fonts---h2--size:...
https://jeskojets.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:72px;--header-blur:20px;--page-padding-inline:24px;--page-padding-block:64px;--page-padding-left:max(env(safe-area-inset-left),var(--page-padding-inline));--page-padding-right:max(env(safe-area-inset-right),var(--page-padding-inline));--page-max-width:1024px;--prose-max-width:624px;--homepage-ou...
https://linear.app/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --mantine-z-index-app:100;--mantine-z-index-modal:200;--mantine-z-index-popover:300;--mantine-z-index-overlay:400;--mantine-z-index-max:9999;--mantine-scale:1;--mantine-cursor-type:default;--mantine-webkit-font-smoothing:antialiased;--mantine-color-scheme:light dark;--mantine-moz-font-smoothing:grayscale;--mant...
https://railway.app/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --mantine-z-index-app:100;--mantine-z-index-modal:200;--mantine-z-index-popover:300;--mantine-z-index-overlay:400;--mantine-z-index-max:9999;--mantine-scale:1;--mantine-cursor-type:default;--mantine-webkit-font-smoothing:antialiased;--mantine-color-scheme:light dark;--mantine-moz-font-smoothing:grayscale;--mant...
https://railway.app/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --mantine-z-index-app:100;--mantine-z-index-modal:200;--mantine-z-index-popover:300;--mantine-z-index-overlay:400;--mantine-z-index-max:9999;--mantine-scale:1;--mantine-cursor-type:default;--mantine-webkit-font-smoothing:antialiased;--mantine-color-scheme:light dark;--mantine-moz-font-smoothing:grayscale;--mant...
https://railway.app/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --mantine-z-index-app:100;--mantine-z-index-modal:200;--mantine-z-index-popover:300;--mantine-z-index-overlay:400;--mantine-z-index-max:9999;--mantine-scale:1;--mantine-cursor-type:default;--mantine-webkit-font-smoothing:antialiased;--mantine-color-scheme:light dark;--mantine-moz-font-smoothing:grayscale;--mant...
https://railway.app/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --mantine-z-index-app:100;--mantine-z-index-modal:200;--mantine-z-index-popover:300;--mantine-z-index-overlay:400;--mantine-z-index-max:9999;--mantine-scale:1;--mantine-cursor-type:default;--mantine-webkit-font-smoothing:antialiased;--mantine-color-scheme:light dark;--mantine-moz-font-smoothing:grayscale;--mant...
https://railway.app/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --mantine-z-index-app:100;--mantine-z-index-modal:200;--mantine-z-index-popover:300;--mantine-z-index-overlay:400;--mantine-z-index-max:9999;--mantine-scale:1;--mantine-cursor-type:default;--mantine-webkit-font-smoothing:antialiased;--mantine-color-scheme:light dark;--mantine-moz-font-smoothing:grayscale;--mant...
https://railway.app/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --black-a1:#0000000d;--black-a2:#0000001a;--black-a3:#00000026;--black-a4:#0003;--black-a5:#0000004d;--black-a6:#0006;--black-a7:#00000080;--black-a8:#0009;--black-a9:#000000b3;--black-a10:#000c;--black-a11:#000000e6;--black-a12:#000000f2}
https://resend.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;--font-sans-fallback:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--font-mono-fallback:"Roboto Mono", Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu S...
https://liveblocks.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;--font-sans-fallback:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--font-mono-fallback:"Roboto Mono", Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu S...
https://liveblocks.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;--font-sans-fallback:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--font-mono-fallback:"Roboto Mono", Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu S...
https://liveblocks.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;--font-sans-fallback:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--font-mono-fallback:"Roboto Mono", Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu S...
https://liveblocks.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;--font-sans-fallback:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--font-mono-fallback:"Roboto Mono", Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu S...
https://liveblocks.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;--font-sans-fallback:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--font-mono-fallback:"Roboto Mono", Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu S...
https://liveblocks.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;--font-sans-fallback:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--font-mono-fallback:"Roboto Mono", Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu S...
https://liveblocks.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light dark;--font-sans-fallback:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;--font-mono-fallback:"Roboto Mono", Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu S...
https://liveblocks.io/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
https://cal.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
https://cal.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
https://cal.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
https://cal.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
https://cal.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
https://cal.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
https://cal.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --background:0 0% 98%;--foreground:0 0% 3.9%;--muted:0 0% 96.1%;--muted-foreground:0 0% 45.1%;--popover:0 0% 100%;--popover-foreground:0 0% 15.1%;--card:0 0% 99.7%;--card-foreground:0 0% 3.9%;--border:0 0% 89.8%;--primary:0 0% 9%;--primary-foreground:0 0% 98%;--secondary:0 0% 96.1%;--secondary-foreground:0 0% 9...
https://dub.co/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --width-listbox:320px;--colors-amber1:hsl(39,70.0%,99.0%);--colors-amber2:hsl(40,100%,96.5%);--colors-amber3:hsl(44,100%,91.7%);--colors-amber4:hsl(43,100%,86.8%);--colors-amber5:hsl(42,100%,81.8%);--colors-amber6:hsl(38,99.7%,76.3%);--colors-amber7:hsl(36,86.1%,67.1%);--colors-amber8:hsl(35,85.2%,55.1%);--colo...
https://supabase.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors-black:0deg 0% 0%;--colors-white:0deg 0% 100%;--colors-gray-dark-100:0deg 0% 8.6%;--colors-gray-dark-200:0deg 0% 11%;--colors-gray-dark-300:0deg 0% 13.7%;--colors-gray-dark-400:0deg 0% 15.7%;--colors-gray-dark-500:0deg 0% 18%;--colors-gray-dark-600:0deg 0% 20.4%;--colors-gray-dark-700:0deg 0% 24.3%;--co...
https://supabase.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors-black:0deg 0% 0%;--colors-white:0deg 0% 100%;--colors-gray-dark-100:0deg 0% 8.6%;--colors-gray-dark-200:0deg 0% 11%;--colors-gray-dark-300:0deg 0% 13.7%;--colors-gray-dark-400:0deg 0% 15.7%;--colors-gray-dark-500:0deg 0% 18%;--colors-gray-dark-600:0deg 0% 20.4%;--colors-gray-dark-700:0deg 0% 24.3%;--co...
https://supabase.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors-black:0deg 0% 0%;--colors-white:0deg 0% 100%;--colors-gray-dark-100:0deg 0% 8.6%;--colors-gray-dark-200:0deg 0% 11%;--colors-gray-dark-300:0deg 0% 13.7%;--colors-gray-dark-400:0deg 0% 15.7%;--colors-gray-dark-500:0deg 0% 18%;--colors-gray-dark-600:0deg 0% 20.4%;--colors-gray-dark-700:0deg 0% 24.3%;--co...
https://supabase.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors-black:0deg 0% 0%;--colors-white:0deg 0% 100%;--colors-gray-dark-100:0deg 0% 8.6%;--colors-gray-dark-200:0deg 0% 11%;--colors-gray-dark-300:0deg 0% 13.7%;--colors-gray-dark-400:0deg 0% 15.7%;--colors-gray-dark-500:0deg 0% 18%;--colors-gray-dark-600:0deg 0% 20.4%;--colors-gray-dark-700:0deg 0% 24.3%;--co...
https://supabase.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors-black:0deg 0% 0%;--colors-white:0deg 0% 100%;--colors-gray-dark-100:0deg 0% 8.6%;--colors-gray-dark-200:0deg 0% 11%;--colors-gray-dark-300:0deg 0% 13.7%;--colors-gray-dark-400:0deg 0% 15.7%;--colors-gray-dark-500:0deg 0% 18%;--colors-gray-dark-600:0deg 0% 20.4%;--colors-gray-dark-700:0deg 0% 24.3%;--co...
https://supabase.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors-black:0deg 0% 0%;--colors-white:0deg 0% 100%;--colors-gray-dark-100:0deg 0% 8.6%;--colors-gray-dark-200:0deg 0% 11%;--colors-gray-dark-300:0deg 0% 13.7%;--colors-gray-dark-400:0deg 0% 15.7%;--colors-gray-dark-500:0deg 0% 18%;--colors-gray-dark-600:0deg 0% 20.4%;--colors-gray-dark-700:0deg 0% 24.3%;--co...
https://supabase.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --colors-black:0deg 0% 0%;--colors-white:0deg 0% 100%;--colors-gray-dark-100:0deg 0% 8.6%;--colors-gray-dark-200:0deg 0% 11%;--colors-gray-dark-300:0deg 0% 13.7%;--colors-gray-dark-400:0deg 0% 15.7%;--colors-gray-dark-500:0deg 0% 18%;--colors-gray-dark-600:0deg 0% 20.4%;--colors-gray-dark-700:0deg 0% 24.3%;--co...
https://supabase.com/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:64px}
https://convex.dev/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:64px}
https://convex.dev/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:64px}
https://convex.dev/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:64px}
https://convex.dev/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:64px}
https://convex.dev/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:64px}
https://convex.dev/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:64px}
https://convex.dev/
design_tokens
Define CSS custom properties (design tokens) for a premium dark-themed website.
:root { --header-height:64px}
https://convex.dev/
design_tokens