Add macaron theme
Add macaron, a pastel light theme for hometown
This commit is contained in:
parent
bfc0fbab2c
commit
29bdcf3bee
3
app/javascript/styles/macaron.scss
Normal file
3
app/javascript/styles/macaron.scss
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
@import 'macaron/variables';
|
||||||
|
@import 'application';
|
||||||
|
@import 'macaron/diff'
|
1002
app/javascript/styles/macaron/diff.scss
Normal file
1002
app/javascript/styles/macaron/diff.scss
Normal file
File diff suppressed because it is too large
Load Diff
48
app/javascript/styles/macaron/variables.scss
Normal file
48
app/javascript/styles/macaron/variables.scss
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
// Dependent colors
|
||||||
|
$black: #000000;
|
||||||
|
$white: #ffffff;
|
||||||
|
$purple: #c8c4dd;
|
||||||
|
$blue: #c8dbee;
|
||||||
|
$green: #dff6eb;
|
||||||
|
$pink: #ffcbcb;
|
||||||
|
$blueberry: #5971ad;
|
||||||
|
$cream: #fffdef;
|
||||||
|
$bilberry: #ad599c;
|
||||||
|
|
||||||
|
$classic-base-color: #282c37;
|
||||||
|
$classic-primary-color: #9baec8;
|
||||||
|
$classic-secondary-color: $green;
|
||||||
|
$classic-highlight-color: #2b90d9;
|
||||||
|
|
||||||
|
// Differences
|
||||||
|
$success-green: #3c754d;
|
||||||
|
|
||||||
|
$base-overlay-background: $white !default;
|
||||||
|
$valid-value-color: $success-green !default;
|
||||||
|
|
||||||
|
$ui-base-color: $classic-secondary-color !default;
|
||||||
|
$ui-base-lighter-color: $cream;
|
||||||
|
$ui-primary-color: #9bcbed;
|
||||||
|
$ui-secondary-color: $classic-base-color !default;
|
||||||
|
$ui-highlight-color: $blueberry;
|
||||||
|
|
||||||
|
$primary-text-color: $black !default;
|
||||||
|
$darker-text-color: $classic-base-color !default;
|
||||||
|
$dark-text-color: #444b5d;
|
||||||
|
$action-button-color: #606984;
|
||||||
|
|
||||||
|
$inverted-text-color: $black !default;
|
||||||
|
$lighter-text-color: $classic-base-color !default;
|
||||||
|
$light-text-color: #444b5d;
|
||||||
|
|
||||||
|
//Newly added colors
|
||||||
|
$account-background-color: $white !default;
|
||||||
|
|
||||||
|
//Invert darkened and lightened colors
|
||||||
|
@function darken($color, $amount) {
|
||||||
|
@return hsl(hue($color), saturation($color), lightness($color) + $amount);
|
||||||
|
}
|
||||||
|
|
||||||
|
@function lighten($color, $amount) {
|
||||||
|
@return hsl(hue($color), saturation($color), lightness($color) - $amount);
|
||||||
|
}
|
@ -1,3 +1,4 @@
|
|||||||
default: styles/application.scss
|
default: styles/application.scss
|
||||||
contrast: styles/contrast.scss
|
contrast: styles/contrast.scss
|
||||||
mastodon-light: styles/mastodon-light.scss
|
mastodon-light: styles/mastodon-light.scss
|
||||||
|
macaron: styles/macaron.scss
|
||||||
|
Loading…
Reference in New Issue
Block a user