|
1 | | -// |
| 1 | +// -*- mode: c -*- |
2 | 2 | // Variables |
3 | 3 | // -------------------------------------------------- |
4 | 4 |
|
|
14 | 14 | @gray-light: lighten(@gray-base, 46.7%); // #777 |
15 | 15 | @gray-lighter: lighten(@gray-base, 93.5%); // #eee |
16 | 16 |
|
| 17 | +@gray-doc-background: #fafafa; // was #f5f5f5 |
| 18 | + |
17 | 19 | // Brand palette |
18 | 20 | // http://www.colourlovers.com/palette/3702908/Key_West_Sunset |
19 | 21 | // |
20 | | -// space blue #2c254a; |
21 | | -// time purple #59356b; |
22 | | -// mauve #b05683; |
23 | | -// orange #f69f74; |
24 | | -// yellow #f8e16d; |
| 22 | +@brand-blue: #2c254a; // space blue |
| 23 | +@brand-purple: #59356b; // time purple |
| 24 | +@brand-mauve: #b05683; |
| 25 | +@brand-orange: #f69f74; |
| 26 | +@brand-yellow: #f8e16d; |
25 | 27 | // |
26 | 28 | // Secondary colours, not part of the primary palette |
27 | | -// green #69fc2c; |
28 | | -// red #d4584d; |
| 29 | +@brand-green: #69fc2c; |
| 30 | +@brand-red: #d4584d; |
29 | 31 |
|
30 | | -@brand-primary: #2c254a; // space blue |
31 | | -@brand-success: darken(#69fc2c, 20%); // green |
32 | | -@brand-info: darken(#f8e16d, 50%); // yellow |
33 | | -@brand-warning: #f69f74; // orange |
34 | | -@brand-danger: #d4584d; // red |
| 32 | +@brand-primary: @brand-blue; // space blue |
| 33 | +@brand-success: darken(@brand-green, 20%); // green |
| 34 | +@brand-info: darken(@brand-yellow, 10%); // yellow |
| 35 | +@brand-warning: @brand-orange; // orange |
| 36 | +@brand-danger: @brand-red; // red |
35 | 37 |
|
36 | 38 |
|
37 | 39 | //== Scaffolding |
|
55 | 57 | // |
56 | 58 | //## Font, line-height, and color for body text, headings, and more. |
57 | 59 |
|
58 | | -@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif; |
59 | | -@font-family-serif: Georgia, "Times New Roman", Times, serif; |
| 60 | +@font-family-sans-serif: "PT Sans", Helvetica, Arial, sans-serif; |
| 61 | +@font-family-serif: "PT Serif", serif; |
60 | 62 | //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`. |
61 | | -@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace; |
62 | | -@font-family-base: @font-family-sans-serif; |
| 63 | +@font-family-monospace: "PT Mono", Menlo, Monaco, Consolas, monospace; |
| 64 | +@font-family-base: @font-family-serif; |
| 65 | + |
| 66 | +// Halloween |
| 67 | +//@font-family-sans-serif: "IM Fell English SC", Helvetica, Arial, sans-serif; |
| 68 | +//@font-family-serif: "IM Fell English", serif; |
| 69 | +////** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`. |
| 70 | +//@font-family-monospace: "Nova Mono", Menlo, Monaco, Consolas, monospace; |
| 71 | +//@font-family-base: @font-family-serif; |
| 72 | + |
| 73 | + |
63 | 74 |
|
64 | 75 | @font-size-base: 14px; |
65 | 76 | @font-size-large: ceil((@font-size-base * 1.189)); // ~18px |
|
78 | 89 | @line-height-computed: floor((@font-size-base * @line-height-base)); // ~20px |
79 | 90 |
|
80 | 91 | //** By default, this inherits from the `<body>`. |
81 | | -@headings-font-family: inherit; |
82 | | -@headings-font-weight: 500; |
| 92 | +@headings-font-family: "PT Sans Caption", sans-serif; |
| 93 | + |
| 94 | +//@headings-font-family: "IM Fell DW Pica", serif; // Halloween |
| 95 | + |
| 96 | +@headings-font-weight: 400; |
83 | 97 | @headings-line-height: 1.1; |
84 | 98 | @headings-color: inherit; |
85 | 99 |
|
|
170 | 184 | @btn-success-border: darken(@btn-success-bg, 5%); |
171 | 185 |
|
172 | 186 | @btn-info-color: #fff; |
173 | | -@btn-info-bg: lighten(@brand-info, 30%); |
| 187 | +@btn-info-bg: @brand-info; |
174 | 188 | @btn-info-border: darken(@btn-info-bg, 5%); |
175 | 189 |
|
176 | 190 | @btn-warning-color: #fff; |
|
504 | 518 | //## Define colors for form feedback states and, by default, alerts. |
505 | 519 |
|
506 | 520 | @state-success-text: darken(@brand-success, 70%); |
507 | | -@state-success-bg: lighten(@brand-success, 30%); |
| 521 | +@state-success-bg: lighten(@brand-success, 40%); |
508 | 522 | @state-success-border: darken(spin(@state-success-bg, -10), 5%); |
509 | 523 |
|
510 | | -@state-info-text: @brand-primary; |
511 | | -@state-info-bg: lighten(@brand-primary, 70%); |
| 524 | +@state-info-text: darken(@brand-info, 70%); |
| 525 | +@state-info-bg: lighten(@brand-info, 32%); |
512 | 526 | @state-info-border: darken(spin(@state-info-bg, -10), 7%); |
513 | 527 |
|
514 | | -@state-warning-text: darken(@brand-info, 70%); |
515 | | -@state-warning-bg: lighten(@brand-info, 70%); |
| 528 | +@state-warning-text: darken(@brand-warning, 70%); |
| 529 | +@state-warning-bg: lighten(@brand-warning, 10%); |
516 | 530 | @state-warning-border: darken(spin(@state-warning-bg, -10), 5%); |
517 | 531 |
|
518 | | -@state-danger-text: darken(@brand-warning, 70%); |
519 | | -@state-danger-bg: lighten(@brand-warning, 70%); |
| 532 | +@state-danger-text: darken(@brand-danger, 70%); |
| 533 | +@state-danger-bg: lighten(@brand-danger, 10%); |
520 | 534 | @state-danger-border: darken(spin(@state-danger-bg, -10), 5%); |
521 | 535 |
|
522 | 536 |
|
|
842 | 856 | @kbd-color: #fff; |
843 | 857 | @kbd-bg: #333; |
844 | 858 |
|
845 | | -@pre-bg: #f5f5f5; |
846 | | -@pre-color: @gray-dark; |
| 859 | +@pre-bg: lighten(@brand-yellow, 28%); |
| 860 | +@pre-color: @gray-base; |
847 | 861 | @pre-border-color: #ccc; |
848 | 862 | @pre-scrollable-max-height: 340px; |
849 | 863 |
|
|
863 | 877 | //** Blockquote small color |
864 | 878 | @blockquote-small-color: @gray-light; |
865 | 879 | //** Blockquote font size |
866 | | -@blockquote-font-size: (@font-size-base * 1.25); |
| 880 | +@blockquote-font-size: (@font-size-base * 1.189); |
867 | 881 | //** Blockquote border color |
868 | 882 | @blockquote-border-color: @gray-lighter; |
869 | 883 | //** Page header border color |
|
0 commit comments