From e53bea8fe4f508bb7ad901d87ec622bb3f4cef33 Mon Sep 17 00:00:00 2001 From: Bauke Date: Fri, 2 Jun 2023 12:16:29 +0200 Subject: [PATCH] Add Catppuccin colors. --- source/assets/options/index.html | 2 +- source/scss/catppuccin.scss | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 source/scss/catppuccin.scss diff --git a/source/assets/options/index.html b/source/assets/options/index.html index 1264232..b6afd41 100644 --- a/source/assets/options/index.html +++ b/source/assets/options/index.html @@ -9,7 +9,7 @@ - + diff --git a/source/scss/catppuccin.scss b/source/scss/catppuccin.scss new file mode 100644 index 0000000..1c55e7a --- /dev/null +++ b/source/scss/catppuccin.scss @@ -0,0 +1,11 @@ +// Colors are from the Catppuccin palette. +// https://catppuccin.com +// License: MIT + +.catppuccin { + // The comments after each color indicate which variant and variable it is. + --bg-1: #1e1e2e; // Mocha $base + --bg-2: #6c7086; // Mocha $overlay0 + --fg-1: #eff1f5; // Frappe $base + --fg-2: #a6adc8; // Mocha $subtext0 +}