Nord Theme
Nord is a set of color palettes that have a polar and frosty look. There are ports of this style to many editors and programs, so I made a version for Replit.
@use "mixins";
.light {
$background: #eceff4;
$foreground: #2e3440;
$outline: #434c5e;
$primary: #88c0d0;
$positive: #a3be8c;
$negative: #bf616a;
@include mixins.light-replit-theme(
$background: $background,
$foreground: $foreground,
$outline: $outline,
$primary: $primary,
$positive: $positive,
$negative: $negative
);
}
.dark {
$background: #2e3440;
$foreground: #eceff4;
$outline: #434c5e;
$primary: #88c0d0;
$positive: #a3be8c;
$negative: #bf616a;
@include mixins.dark-replit-theme(
$background: $background,
$foreground: $foreground,
$outline: $outline,
$primary: $primary,
$positive: $positive,
$negative: $negative
);
}