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

💄 add new theme "Chimera-nightsky" #83

Merged
merged 7 commits into from
Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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,4 +20,5 @@ 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-nightsky.scss build/chimera-nightsky.css
shell: bash
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,16 @@ Chimera-autumn
/>
```

Chimera-nightsky

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

### Theme comparisons

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

</div>

Expand Down
289 changes: 289 additions & 0 deletions build/chimera-nightsky.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-nightsky.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-nightsky.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-nightsky.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(210, 90%, 30%); // Dark Blue
$Chimera-dark: hsl(210, 90%, 20%); // Darker Blue
$Chimera-darker: hsl(210, 90%, 10%); // Darkest Blue
$Chimera-text: hsl(0, 0%, 95%); // Light Gray
$Chimera-text-secondary: hsl(0, 0%, 75%);
$Chimera-text-disabled: hsl(210, 30%, 60%);
$Chimera-bg: hsl(210, 30%, 15%); // Very Dark Blue
$Chimera-bg-secondary: hsl(210, 20%, 10%);
$Chimera-link: hsl(210, 90%, 40%);
$Chimera-focus: hsl(280, 70%, 50%);
$Chimera-fill: hsla(210, 90%, 30%, 10%);
$Chimera-border: hsl(210, 30%, 20%);

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