forked from mirrors/catstodon
Compare commits
2 commits
6b7b0d5b15
...
f3932cf879
Author | SHA1 | Date | |
---|---|---|---|
f3932cf879 | |||
c2bfd2f989 |
2 changed files with 30 additions and 6 deletions
|
@ -1,12 +1,20 @@
|
||||||
// Commonly used web colors
|
// Commonly used web colors
|
||||||
$black: #000000;
|
$black: #000000;
|
||||||
$white: #ffffff;
|
$white: #ffffff;
|
||||||
$success-green: #5fe43d;
|
$red-600: #b7253d !default; // Deep Carmine
|
||||||
$error-red: #c9343b;
|
$red-500: #df405a !default; // Cerise
|
||||||
$warning-red: #c96932;
|
$blurple-600: #de18a3;
|
||||||
$gold-star: #e4ba3d;
|
$blurple-500: lighten($blurple-600, 7%);
|
||||||
|
$blurple-300: lighten($blurple-600, 21%);
|
||||||
|
$grey-600: #4e4c5a; // Trout
|
||||||
|
$grey-100: #dadaf3; // Topaz
|
||||||
|
|
||||||
$red-bookmark: $success-green;
|
$success-green: #5fe43d !default;
|
||||||
|
$error-red: #c9343b !default;
|
||||||
|
$warning-red: #c96932 !default;
|
||||||
|
$gold-star: #e4ba3d !default;
|
||||||
|
|
||||||
|
$red-bookmark: $success-green !default;
|
||||||
|
|
||||||
// Values from the classic Mastodon UI
|
// Values from the classic Mastodon UI
|
||||||
$classic-base-color: #150f21;
|
$classic-base-color: #150f21;
|
||||||
|
@ -28,6 +36,22 @@ $ui-base-lighter-color: #5f4a6e !default;
|
||||||
$ui-primary-color: $classic-primary-color !default;
|
$ui-primary-color: $classic-primary-color !default;
|
||||||
$ui-secondary-color: $classic-secondary-color !default;
|
$ui-secondary-color: $classic-secondary-color !default;
|
||||||
$ui-highlight-color: $classic-highlight-color !default;
|
$ui-highlight-color: $classic-highlight-color !default;
|
||||||
|
$ui-button-color: $white;
|
||||||
|
$ui-button-background-color: $blurple-500;
|
||||||
|
$ui-button-focus-background-color: $blurple-600;
|
||||||
|
|
||||||
|
$ui-button-secondary-color: $grey-100 !default;
|
||||||
|
$ui-button-secondary-border-color: $grey-100 !default;
|
||||||
|
$ui-button-secondary-focus-background-color: $grey-600 !default;
|
||||||
|
$ui-button-secondary-focus-color: $white !default;
|
||||||
|
|
||||||
|
$ui-button-tertiary-color: $blurple-300 !default;
|
||||||
|
$ui-button-tertiary-border-color: $blurple-300 !default;
|
||||||
|
$ui-button-tertiary-focus-background-color: $blurple-600 !default;
|
||||||
|
$ui-button-tertiary-focus-color: $white !default;
|
||||||
|
|
||||||
|
$ui-button-destructive-background-color: $red-500 !default;
|
||||||
|
$ui-button-destructive-focus-background-color: $red-600 !default;
|
||||||
|
|
||||||
// Variables for texts
|
// Variables for texts
|
||||||
$primary-text-color: $classic-secondary-color !default;
|
$primary-text-color: $classic-secondary-color !default;
|
||||||
|
|
|
@ -29,7 +29,7 @@ module Mastodon
|
||||||
end
|
end
|
||||||
|
|
||||||
def post_suffix_version
|
def post_suffix_version
|
||||||
'-1.1.10'
|
'-1.1.11'
|
||||||
end
|
end
|
||||||
|
|
||||||
def to_a
|
def to_a
|
||||||
|
|
Loading…
Reference in a new issue