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
|
||||
$black: #000000;
|
||||
$white: #ffffff;
|
||||
$success-green: #5fe43d;
|
||||
$error-red: #c9343b;
|
||||
$warning-red: #c96932;
|
||||
$gold-star: #e4ba3d;
|
||||
$red-600: #b7253d !default; // Deep Carmine
|
||||
$red-500: #df405a !default; // Cerise
|
||||
$blurple-600: #de18a3;
|
||||
$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
|
||||
$classic-base-color: #150f21;
|
||||
|
@ -28,6 +36,22 @@ $ui-base-lighter-color: #5f4a6e !default;
|
|||
$ui-primary-color: $classic-primary-color !default;
|
||||
$ui-secondary-color: $classic-secondary-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
|
||||
$primary-text-color: $classic-secondary-color !default;
|
||||
|
|
|
@ -29,7 +29,7 @@ module Mastodon
|
|||
end
|
||||
|
||||
def post_suffix_version
|
||||
'-1.1.10'
|
||||
'-1.1.11'
|
||||
end
|
||||
|
||||
def to_a
|
||||
|
|
Loading…
Reference in a new issue