Skip to content

Commit

Permalink
Update version
Browse files Browse the repository at this point in the history
  • Loading branch information
adamlaki committed Feb 23, 2022
1 parent 8de43fb commit 122698b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Spruce CSS Changelog

## v0.3.1 (2022-02-23)
- Fix typos

## v0.3.0 (2022-02-22)

### New features
Expand Down
12 changes: 8 additions & 4 deletions css/spruce.css
Original file line number Diff line number Diff line change
Expand Up @@ -368,10 +368,14 @@ template {

:root {
--spruce-btn-color-primary-background: #8660cd;
--spruce-btn-color-primary-background-hover: #543097;
--spruce-btn-color-primary-foreground: white;
--spruce-btn-color-primary-foreground-hover: white;
--spruce-btn-color-primary-shadow-focus: rgba(134, 96, 205, 0.25);
--spruce-btn-color-secondary-background: #2350f6;
--spruce-btn-color-secondary-background-hover: #072bab;
--spruce-btn-color-secondary-foreground: white;
--spruce-btn-color-secondary-foreground-hover: white;
--spruce-btn-color-secondary-shadow-focus: rgba(35, 80, 246, 0.25);
}

Expand Down Expand Up @@ -544,8 +548,8 @@ hr {
color: var(--spruce-btn-color-primary-foreground);
}
.btn--primary:hover {
background-color: #543097;
color: var(--spruce-btn-color-primary-foreground);
background-color: var(--spruce-btn-color-primary-background-hover);
color: var(--spruce-btn-color-primary-foreground-hover);
}
.btn--primary:focus {
box-shadow: 0 0 0 0.25rem var(--spruce-btn-color-primary-shadow-focus);
Expand All @@ -557,8 +561,8 @@ hr {
color: var(--spruce-btn-color-secondary-foreground);
}
.btn--secondary:hover {
background-color: #072bab;
color: var(--spruce-btn-color-secondary-foreground);
background-color: var(--spruce-btn-color-secondary-background-hover);
color: var(--spruce-btn-color-secondary-foreground-hover);
}
.btn--secondary:focus {
box-shadow: 0 0 0 0.25rem var(--spruce-btn-color-secondary-shadow-focus);
Expand Down
2 changes: 1 addition & 1 deletion css/spruce.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sprucecss",
"version": "0.3.0",
"version": "0.3.1",
"description": "Spruce CSS - Another CSS Framework",
"keywords": [
"css",
Expand Down
2 changes: 1 addition & 1 deletion scss/_root.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@use 'mixin' as *;
@use 'variable' as *;

// Generate the $base-colors and $form-colors maps into CSS cusotm properties
// Generate the $colors maps into CSS custom properties.
@include generate-color-variables;

:root {
Expand Down

0 comments on commit 122698b

Please sign in to comment.