Fresh Lime

A fresh and vibrant freshlime-themed color scheme that's easy on the eyes while maintaining excellent readability.

Styles

note:

You can override the default styles by adding your own CSS variables in the globals.css and syntax.css files.

globals.css
/* Fresh Lime Theme */
@layer base {
:root {
    --background: 85 45% 98%;
    --foreground: 85 30% 10%;
    --card: 0 0% 100%;
    --card-foreground: 85 30% 10%;
    --popover: 0 0% 100%;
    --popover-foreground: 85 30% 10%;
    --primary: 85 70% 45%;
    --primary-foreground: 0 0% 100%;
    --secondary: 85 40% 90%;
    --secondary-foreground: 85 30% 10%;
    --muted: 85 30% 92%;
    --muted-foreground: 85 15% 45%;
    --accent: 85 60% 40%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 85% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 85 25% 88%;
    --input: 85 25% 88%;
    --ring: 85 70% 45%;
    --radius: 0.5rem;
    --chart-1: 85 70% 45%;
    --chart-2: 85 60% 40%;
    --chart-3: 85 80% 40%;
    --chart-4: 85 85% 35%;
    --chart-5: 85 90% 30%;
    --line-number-color: rgba(0, 0, 0, 0.05);
}

.dark {
    --background: 85 20% 8%;
    --foreground: 85 30% 96%;
    --card: 85 20% 10%;
    --card-foreground: 85 30% 96%;
    --popover: 85 20% 10%;
    --popover-foreground: 85 30% 96%;
    --primary: 85 75% 55%;
    --primary-foreground: 85 20% 8%;
    --secondary: 85 25% 18%;
    --secondary-foreground: 85 30% 96%;
    --muted: 85 20% 20%;
    --muted-foreground: 85 20% 70%;
    --accent: 85 70% 50%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 85% 65%;
    --destructive-foreground: 0 0% 100%;
    --border: 85 25% 22%;
    --input: 85 25% 22%;
    --ring: 85 75% 55%;
    --chart-1: 85 75% 55%;
    --chart-2: 85 70% 50%;
    --chart-3: 85 80% 45%;
    --chart-4: 85 85% 40%;
    --chart-5: 85 90% 35%;
    --line-number-color: rgba(255, 255, 255, 0.1);
}
}

Published on Nov 15, 1935