Skip to content

Commit d02ca92

Browse files
Merge pull request #3 from CastleCSS/theme-colors
Theme colors
2 parents 4cf3203 + a1dc1d3 commit d02ca92

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "castlecss-core",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "CastleCSS a SCSS framework with modular building blocks for the web",
55
"main": "index.js",
66
"scripts": {

sass/base/variables.scss

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
1-
/*========== VARIABLES ==========*/
1+
/* Variables
2+
* Add or replace variables in your OWN variables file
3+
*/
24

35
/*
4-
* Base colors
5-
* Color 01 and 02 reservered for white and black
6+
* Base colors
7+
* Color 01 and 02 reservered for white and black
68
*/
79
$color01: #fff;
810
$color02: #000;
911

12+
/* Theme colors */
13+
$theme01: #1B94BF; // Knight blue
14+
$theme02: #093142; // Royal blue
15+
$theme03: #12637F; // Falcon blue
16+
$theme04: #FFC200; // Royal yellow
17+
$theme05: #FFFFFF; // Destroyer white
18+
1019
$alert: #FFD700;
1120
$negative: #FF7878;
1221
$positive: #29C85D;

0 commit comments

Comments
 (0)