Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

💄 Plain theme - simplest possible theme #87

Merged
merged 2 commits into from
Jan 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/compile-themes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@ runs:
sass src/themes/chimera-dark.scss build/chimera-dark.css
sass src/themes/chimera-golden.scss build/chimera-golden.css
sass src/themes/chimera-autumn.scss build/chimera-autumn.css
sass src/themes/chimera-plain.scss build/chimera-plain.css
sass src/themes/chimera-blues.scss build/chimera-blues.css
shell: bash
299 changes: 299 additions & 0 deletions build/chimera-plain.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions build/chimera-plain.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 19 additions & 0 deletions src/themes/chimera-plain.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// fonts
$font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
"Helvetica Neue", Arial, "Noto Sans", sans-serif;

//Color palette
$Chimera: hsl(0, 0%, 10%);
$Chimera-dark: hsl(0, 0%, 20%);
$Chimera-darker: hsl(0, 0%, 30%);
$Chimera-text: hsl(0, 0%, 10%);
$Chimera-text-secondary: #ffff;
$Chimera-text-disabled: hsl(0, 0%, 50%);
$Chimera-bg: hsl(0, 0%, 100%);
$Chimera-bg-secondary: hsl(0, 0%, 95%);
$Chimera-link: hsl(263, 100%, 50%);
$Chimera-focus: hsl(263, 100%, 70%);
$Chimera-fill: hsla(0, 0%, 0%, 0.1);
$Chimera-border: hsl(0, 0%, 30%);

@import "../elements/main";
Loading