Skip to content

Commit

Permalink
💄 added new theme "Chimera-autumn" (#78)
Browse files Browse the repository at this point in the history
* 💄 added new theme "Chimera-autumn"

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>

* 🚨 fix compiler warning

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>

* 💄 update text-secondary to white

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>

* 📝 update README

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>

---------

Signed-off-by: Sindre Kjelsrud <kjelsrudsindre@gmail.com>
  • Loading branch information
SindreKjelsrud authored Jan 11, 2024
1 parent 27d6130 commit efcc011
Show file tree
Hide file tree
Showing 6 changed files with 329 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/actions/compile-themes/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ runs:
run: |
sass src/themes/chimera.scss build/chimera.css
sass src/themes/chimera-dark.scss build/chimera-dark.css
sass src/themes/chimera-golden.scss build/chimera-golden.css
shell: bash
sass src/themes/chimera-golden.scss build/chimera-golden.css
sass src/themes/chimera-autumn.scss build/chimera-autumn.css
shell: bash
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,16 @@ Chimera-golden
/>
```

Chimera-autumn

```html
<link
rel="stylesheet"
type="text/css"
href="https://unpkg.com/chimeracss@:version/build/chimera-autumn.css"
/>
```

### Theme comparisons

<div>
Expand Down Expand Up @@ -112,6 +122,13 @@ Chimera-golden
alt="Chimera"
width="50%"
/>
<h4>Chimera-autumn:</h4>
<img
align="center"
src="./public/img/chimera-autumn.png"
alt="Chimera"
width="50%"
/>

</div>

Expand Down
289 changes: 289 additions & 0 deletions build/chimera-autumn.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-autumn.css.map

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

Binary file added public/img/chimera-autumn.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions src/themes/chimera-autumn.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(25, 80%, 55%); // Rusty Red
$Chimera-dark: hsl(25, 80%, 40%); // Dark Rust
$Chimera-darker: hsl(25, 80%, 25%); // Deep Rust
$Chimera-text: hsl(25, 50%, 20%); // Dark Brown (revised for better contrast)
$Chimera-text-secondary: #fff; // Dark Gray
$Chimera-text-disabled: hsl(25, 50%, 40%);
$Chimera-bg: hsl(30, 45%, 95%); // Soft Orange
$Chimera-bg-secondary: hsl(30, 30%, 90%);
$Chimera-link: hsl(25, 80%, 55%);
$Chimera-focus: hsl(15, 80%, 50%);
$Chimera-fill: hsla(25, 80%, 55%, 10%);
$Chimera-border: hsl(25, 25%, 80%);

@import "../elements/main";

0 comments on commit efcc011

Please sign in to comment.