Add soft-era

This commit is contained in:
Sainnhe Park 2022-10-31 12:37:56 +08:00
parent a0acda9f38
commit 20dd44a1e1
4 changed files with 36 additions and 1 deletions

View File

@ -9,6 +9,6 @@ for theme in edge gruvbox gruvbox-material everforest; do
done
done
for theme in nord; do
for theme in nord soft-era; do
lessc -x "src/${theme}.less" > "dist/theme-${theme}.css"
done

1
dist/theme-soft-era.css vendored Normal file

File diff suppressed because one or more lines are too long

32
src/palette/soft-era.less Normal file
View File

@ -0,0 +1,32 @@
@primary: #aea6e1; // primary color used in main texts
@secondary: #75a9d9; // secondary color used in some texts and text based buttons
@tertiary: #96ad01; // tertiary color used in other colored texts
@fg: #be9898;
@bg0: #f9f5f5;
@bg1: #f4f0f0;
@bg2: #f2edec;
@bg3: #efeae9;
@bg4: #ebe6e4;
@red: #f85552;
@orange: #ec9157;
@yellow: #dfa000;
@green: #96ad01;
@cyan: #25b7b8;
@blue: #75a9d9;
@purple: #aea6e1;
@pink: #f165bd;
@grey: #dfc5c5;
@red-bg: #fae1d7;
@green-bg: #eaf3ce;
@blue-bg: #e0f0f3;
@yellow-bg: #f6ead0;
@button1: #aea6e1;
@button2: #75a9d9;
@button-red: #f85552;
@key: @pink;
@operator: @purple;
@string: @green;
@value: @green;
@type: @orange;
@function: @blue;
@special: @cyan;

2
src/soft-era.less Normal file
View File

@ -0,0 +1,2 @@
@import "palette/soft-era";
@import "template/index";