Sha256: f3853889ae61701df84d34430b45bc0dbbeaad8a095f02f87a812bd0c5f6ef39
Contents?: true
Size: 766 Bytes
Versions: 1
Compression:
Stored size: 766 Bytes
Contents
// Use American 'color' in variable names for consistency with CSS keywords. // Named colors $light-red: #FF5858; $dark-red: darken($light-red, 50%); $light-green: #66FF33; $dark-green: darken($light-green, 50%); $light-yellow: #f8ff83; $dark-yellow: darken($light-yellow, 50%); $light-grey: #ddd; $grey: #555; $dark-grey: darken($light-grey, 50%); $black: #333; // Text colors $primary-text-color: $black; $link-color: #E20020; // Notices/alerts $alert-background-color: $light-yellow; $alert-text-color: $grey; $alert-border-color: $dark-yellow; $error-background-color: $light-red; $error-text-color: $dark-red; $error-border-color: $dark-red; $success-background-color: $light-green; $success-text-color: $dark-green; $success-border-color: $dark-green;
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
forge-cli-0.1.10 | lib/forge/app/assets/stylesheets/colors.css.scss |