Skip to content

Commit db1d663

Browse files
author
James Kolce
committed
[fix: #230] Update color palette
1 parent 07c07fc commit db1d663

File tree

4 files changed

+36
-49
lines changed

4 files changed

+36
-49
lines changed

_globals.scss

Lines changed: 25 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
//
66
// Helper functions
7-
// ----------------
7+
// --------------------------------------------------
88

99
@function pow($number, $exponent) {
1010
$value: 1;
@@ -24,7 +24,7 @@
2424

2525
//
2626
// Base
27-
// ----
27+
// --------------------------------------------------
2828

2929
$font-size: 16 !default;
3030
$font-size-secondary: 18 !default;
@@ -63,10 +63,9 @@ $spacing-m: 2lh !default;
6363
$spacing-l: 3lh !default;
6464
$spacing-xl: 4lh !default;
6565

66-
6766
//
6867
// Type Scale
69-
// -------------
68+
// --------------------------------------------------
7069

7170
// Suggested ratios
7271
// Source: http://type-scale.com/
@@ -92,7 +91,7 @@ $scale-ratio-secondary: $_perfect-fourth !default;
9291

9392
//
9493
// Grid
95-
// ----
94+
// --------------------------------------------------
9695

9796
// Create grid styles
9897
$enable-grid: true !default;
@@ -115,62 +114,51 @@ $prefix: '' !default;
115114
// Create columns and offsets above this breakpoint
116115
$breakpoint: --small !default;
117116

118-
119117
//
120118
// Color Palette
121-
// -------------
119+
// --------------------------------------------------
122120

123-
// Colors
124121
$colors: (
125122
base: (
126-
"primary": #4591aa,
127-
"selection": #d6d6d6,
128-
"lines": #e0e0e0
123+
"primary": #C65146,
124+
"selection": #EBE1D3,
125+
"lines": #DCDCDC
129126
),
130127

131128
text: (
132-
"primary": #555,
129+
"primary": #444,
133130
"secondary": #666,
134131
"heading": #222,
135-
"ui": white
132+
"inverted": white
136133
),
137134

138135
background: (
139-
"dark": #282E31,
136+
"dark": #32373d,
140137
"light": #f5f5f5,
141138
"body": white
142139
),
143140

144141
state: (
145142
"muted": #aaa,
146-
"primary": #4591aa,
147-
"success": #45ca69,
148-
"warning": #ffb800,
149-
"error": #ca4829
143+
"success": #10a887,
144+
"warning": #F17F42,
145+
"error": #da3c3c
150146
),
151147

152148
blue: (
153-
"darker": #495b61,
154-
"dark": #447281,
155-
"base": #4591aa,
156-
"light": #5ab0cc,
157-
"lighter": #74cbe8
149+
"darker": #1573b6,
150+
"dark": #1e80c6,
151+
"base": #2b90d9,
152+
"light": #3fa2e9,
153+
"lighter": #4eb1f9
158154
),
159155

160156
green: (
161-
"darker": #3b6e6e,
162-
"dark": #3b8686,
163-
"base": #37a1a1,
164-
"light": #2dbaba,
165-
"lighter": #69d1d1
166-
),
167-
168-
cream: (
169-
"darker": #c47858,
170-
"dark": #e29372,
171-
"base": #ecac91,
172-
"light": #f9c2ab,
173-
"lighter": #fdd5c3
157+
"darker": #089073,
158+
"dark": #0b9d7d,
159+
"base": #10a887,
160+
"light": #1eb896,
161+
"lighter": #28ceaa
174162
),
175163

176164
red: (
@@ -190,10 +178,9 @@ $colors: (
190178
)
191179
) !default;
192180

193-
194181
//
195182
// getColor Function
196-
// --------
183+
// --------------------------------------------------
197184
// Easily retrieve colors for use.
198185
//
199186

dist/concise.css

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -213,13 +213,13 @@ address {
213213

214214
a {
215215
background-color: transparent;
216-
color: #4591aa;
216+
color: #C65146;
217217
cursor: pointer;
218218
text-decoration: none;
219219
-webkit-transition: 150ms;
220220
transition: 150ms; }
221221
a:hover, a:focus {
222-
color: #2f6374; }
222+
color: #92362d; }
223223

224224
h1, h2, h3, h4, h5, h6 {
225225
color: #222;
@@ -235,7 +235,7 @@ h1, h2, h3 {
235235
h1 a, h2 a, h3 a {
236236
color: inherit; }
237237
h1 a:hover, h1 a:focus, h2 a:hover, h2 a:focus, h3 a:hover, h3 a:focus {
238-
color: #4591aa;
238+
color: #C65146;
239239
text-decoration: none; }
240240

241241
h4, h5, h6 {
@@ -349,7 +349,7 @@ dd {
349349
margin-bottom: 0.375rem; }
350350

351351
button, input[type="submit"] {
352-
background-color: #4591aa;
352+
background-color: #C65146;
353353
border: none;
354354
color: white;
355355
cursor: pointer;
@@ -369,13 +369,13 @@ button, input[type="submit"] {
369369
vertical-align: middle;
370370
white-space: nowrap; }
371371
button:hover, input[type="submit"]:hover, button:focus, input[type="submit"]:focus {
372-
background-color: #75b3c7;
372+
background-color: #d88880;
373373
color: white;
374374
text-decoration: none; }
375375
button:focus, input[type="submit"]:focus, button:active, input[type="submit"]:active {
376376
outline: none; }
377377
button:active, input[type="submit"]:active {
378-
background-color: #63a8bf; }
378+
background-color: #d2766d; }
379379
button[disabled], input[disabled][type="submit"] {
380380
background-color: gainsboro;
381381
color: white;
@@ -492,7 +492,7 @@ input[type="range"] {
492492
input[type="range"]::-webkit-slider-thumb {
493493
border: none;
494494
border-radius: 50%;
495-
background-color: #4591aa;
495+
background-color: #C65146;
496496
height: 16px;
497497
margin-top: -5px;
498498
width: 16px;
@@ -505,7 +505,7 @@ input[type="range"] {
505505
input[type="range"]::-moz-range-thumb {
506506
border: none;
507507
border-radius: 50%;
508-
background-color: #4591aa;
508+
background-color: #C65146;
509509
height: 16px;
510510
margin-top: -5px;
511511
width: 16px; }
@@ -518,7 +518,7 @@ input[type="range"] {
518518
input[type="range"]::-ms-thumb {
519519
border: none;
520520
border-radius: 50%;
521-
background-color: #4591aa;
521+
background-color: #C65146;
522522
height: 16px;
523523
margin-top: -5px;
524524
width: 16px; }

0 commit comments

Comments
 (0)