Colour tweaks, lightening or darkening various background colours. Cream paper for documents (using the yellow palette colour). Using names for the brand colours, instead of repeating hex colour codes. Changed font set to PT Serif/Sans Caption/Mono. Added settings for a posible halloween font set.

- Legacy-Id: 9404
This commit is contained in:
Henrik Levkowetz 2015-04-05 09:58:48 +00:00
parent b81c169e7d
commit cbc2117c70

View file

@ -1,4 +1,4 @@
// // -*- mode: c -*-
// Variables // Variables
// -------------------------------------------------- // --------------------------------------------------
@ -14,24 +14,26 @@
@gray-light: lighten(@gray-base, 46.7%); // #777 @gray-light: lighten(@gray-base, 46.7%); // #777
@gray-lighter: lighten(@gray-base, 93.5%); // #eee @gray-lighter: lighten(@gray-base, 93.5%); // #eee
@gray-doc-background: #fafafa; // was #f5f5f5
// Brand palette // Brand palette
// http://www.colourlovers.com/palette/3702908/Key_West_Sunset // http://www.colourlovers.com/palette/3702908/Key_West_Sunset
// //
// space blue #2c254a; @brand-blue: #2c254a; // space blue
// time purple #59356b; @brand-purple: #59356b; // time purple
// mauve #b05683; @brand-mauve: #b05683;
// orange #f69f74; @brand-orange: #f69f74;
// yellow #f8e16d; @brand-yellow: #f8e16d;
// //
// Secondary colours, not part of the primary palette // Secondary colours, not part of the primary palette
// green #69fc2c; @brand-green: #69fc2c;
// red #d4584d; @brand-red: #d4584d;
@brand-primary: #2c254a; // space blue @brand-primary: @brand-blue; // space blue
@brand-success: darken(#69fc2c, 20%); // green @brand-success: darken(@brand-green, 20%); // green
@brand-info: darken(#f8e16d, 50%); // yellow @brand-info: darken(@brand-yellow, 10%); // yellow
@brand-warning: #f69f74; // orange @brand-warning: @brand-orange; // orange
@brand-danger: #d4584d; // red @brand-danger: @brand-red; // red
//== Scaffolding //== Scaffolding
@ -55,11 +57,20 @@
// //
//## Font, line-height, and color for body text, headings, and more. //## Font, line-height, and color for body text, headings, and more.
@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif; @font-family-sans-serif: "PT Sans", Helvetica, Arial, sans-serif;
@font-family-serif: Georgia, "Times New Roman", Times, serif; @font-family-serif: "PT Serif", serif;
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`. //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; @font-family-monospace: "PT Mono", Menlo, Monaco, Consolas, monospace;
@font-family-base: @font-family-sans-serif; @font-family-base: @font-family-serif;
// Halloween
//@font-family-sans-serif: "IM Fell English SC", Helvetica, Arial, sans-serif;
//@font-family-serif: "IM Fell English", serif;
////** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
//@font-family-monospace: "Nova Mono", Menlo, Monaco, Consolas, monospace;
//@font-family-base: @font-family-serif;
@font-size-base: 14px; @font-size-base: 14px;
@font-size-large: ceil((@font-size-base * 1.189)); // ~18px @font-size-large: ceil((@font-size-base * 1.189)); // ~18px
@ -78,8 +89,11 @@
@line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px @line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px
//** By default, this inherits from the `<body>`. //** By default, this inherits from the `<body>`.
@headings-font-family: inherit; @headings-font-family: "PT Sans Caption", sans-serif;
@headings-font-weight: 500;
//@headings-font-family: "IM Fell DW Pica", serif; // Halloween
@headings-font-weight: 400;
@headings-line-height: 1.1; @headings-line-height: 1.1;
@headings-color: inherit; @headings-color: inherit;
@ -170,7 +184,7 @@
@btn-success-border: darken(@btn-success-bg, 5%); @btn-success-border: darken(@btn-success-bg, 5%);
@btn-info-color: #fff; @btn-info-color: #fff;
@btn-info-bg: lighten(@brand-info, 30%); @btn-info-bg: @brand-info;
@btn-info-border: darken(@btn-info-bg, 5%); @btn-info-border: darken(@btn-info-bg, 5%);
@btn-warning-color: #fff; @btn-warning-color: #fff;
@ -504,19 +518,19 @@
//## Define colors for form feedback states and, by default, alerts. //## Define colors for form feedback states and, by default, alerts.
@state-success-text: darken(@brand-success, 70%); @state-success-text: darken(@brand-success, 70%);
@state-success-bg: lighten(@brand-success, 30%); @state-success-bg: lighten(@brand-success, 40%);
@state-success-border: darken(spin(@state-success-bg, -10), 5%); @state-success-border: darken(spin(@state-success-bg, -10), 5%);
@state-info-text: @brand-primary; @state-info-text: darken(@brand-info, 70%);
@state-info-bg: lighten(@brand-primary, 70%); @state-info-bg: lighten(@brand-info, 32%);
@state-info-border: darken(spin(@state-info-bg, -10), 7%); @state-info-border: darken(spin(@state-info-bg, -10), 7%);
@state-warning-text: darken(@brand-info, 70%); @state-warning-text: darken(@brand-warning, 70%);
@state-warning-bg: lighten(@brand-info, 70%); @state-warning-bg: lighten(@brand-warning, 10%);
@state-warning-border: darken(spin(@state-warning-bg, -10), 5%); @state-warning-border: darken(spin(@state-warning-bg, -10), 5%);
@state-danger-text: darken(@brand-warning, 70%); @state-danger-text: darken(@brand-danger, 70%);
@state-danger-bg: lighten(@brand-warning, 70%); @state-danger-bg: lighten(@brand-danger, 10%);
@state-danger-border: darken(spin(@state-danger-bg, -10), 5%); @state-danger-border: darken(spin(@state-danger-bg, -10), 5%);
@ -842,8 +856,8 @@
@kbd-color: #fff; @kbd-color: #fff;
@kbd-bg: #333; @kbd-bg: #333;
@pre-bg: #f5f5f5; @pre-bg: lighten(@brand-yellow, 28%);
@pre-color: @gray-dark; @pre-color: @gray-base;
@pre-border-color: #ccc; @pre-border-color: #ccc;
@pre-scrollable-max-height: 340px; @pre-scrollable-max-height: 340px;
@ -863,7 +877,7 @@
//** Blockquote small color //** Blockquote small color
@blockquote-small-color: @gray-light; @blockquote-small-color: @gray-light;
//** Blockquote font size //** Blockquote font size
@blockquote-font-size: (@font-size-base * 1.25); @blockquote-font-size: (@font-size-base * 1.189);
//** Blockquote border color //** Blockquote border color
@blockquote-border-color: @gray-lighter; @blockquote-border-color: @gray-lighter;
//** Page header border color //** Page header border color