Skip to content

Instantly share code, notes, and snippets.

@TooManyBees
Last active August 5, 2019 19:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save TooManyBees/e3bb75e79331c66e70b746ae3fdd76a7 to your computer and use it in GitHub Desktop.
Save TooManyBees/e3bb75e79331c66e70b746ae3fdd76a7 to your computer and use it in GitHub Desktop.
foresty mastodon color theme
// Commonly used web colors
$success-green: #79bd9a; // Padua
$error-red: #df405a; // Cerise
$warning-red: #ff5050; // Sunset Orange
$gold-star: #00B59B; // Toggled favorite/boost icons - #ca8f04
// Variables for defaults in UI
$base-shadow-color: #000;
$base-overlay-background: #000;
$base-border-color: #fff;
$simple-background-color: #FCF8F6; // input text fields - $white
$valid-value-color: $success-green;
$error-value-color: $error-red;
// Tell UI to use selected colors
$ui-base-color: #20371D; // Darkest
$ui-base-lighter-color: #E5744E; // CC6745 Lighter darkest
$ui-primary-color: #93d459; // Lighter
$ui-secondary-color: #D7EEC2; // Lightest * Links
$ui-highlight-color: #E28F12; // Buttons, headings
// Variables for texts
$primary-text-color: #fff;
$darker-text-color: $ui-primary-color; // link card text
$dark-text-color: $ui-base-lighter-color; // author @handles, timestamps, boosts, link card urls, faded notification text
$secondary-text-color: $ui-secondary-color; // toot links, @handles
$highlight-text-color: $ui-highlight-color; // breadcrumbs
$action-button-color: #E7D392; // #D4B759; // action buttons - $ui-base-lighter-color
// For texts on inverted backgrounds
$inverted-text-color: $ui-base-color; // pill text
$lighter-text-color: $ui-base-lighter-color; // publish input controls
$light-text-color: $ui-primary-color;
@import "application";
.status__content .status__content__spoiler-link,
.reply-indicator__content .status__content__spoiler-link {
background-color: darken($ui-primary-color, 20%);
&:hover {
background-color: $ui-primary-color;
}
}
.ui {
background-image:
// linear-gradient(
// rgba(#9AFFEA, 0.15) 0,
// rgba(#9AD2FF, 0.1) 15vh,
// transparent 25vh
// ),
linear-gradient(0,
rgba($ui-base-lighter-color, 0.1),
transparent 30vh
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment