Skip to content

Commit f65cd5b

Browse files
author
DNZ\darius
committed
Merge branch 'release/v2.3'
2 parents a5f7634 + 2492034 commit f65cd5b

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
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": "2.2.0",
3+
"version": "2.3.0",
44
"description": "CastleCSS a SCSS framework with modular building blocks for the web",
55
"main": "index.js",
66
"scripts": {

sass/variables.scss

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
*/
1414
$color01: #fff;
1515
$color02: #000;
16+
$color03: #eeeeee;
1617

1718
/*
1819
Theme colors
@@ -119,4 +120,35 @@ $font-sec: Arial, Helvetica, sans-serif;
119120
$font-size-default: 1.6rem;
120121
$line-height-default: 1.5;
121122

122-
$breadcrumbs-separator: '\00bb';
123+
/* Breadcrumbs seperator */
124+
$breadcrumbs-separator: '\00bb';
125+
126+
/* Form specific variables */
127+
128+
/* Standard Inputs */
129+
$input-height: 4.8rem;
130+
$input-bg-color: $color01;
131+
$input-bg-color-focus: $color01;
132+
$input-color: $color02;
133+
$input-color-focus: $color02;
134+
$input-border-color: #eee;
135+
$input-border-color-focus: #eee;
136+
$input-border: 1px solid $input-border-color;
137+
138+
/* Custom select */
139+
$select-arrow: "\203A";
140+
141+
/* Labels */
142+
$input-label-color: #aaa;
143+
$input-label-color-focus: #aaa;
144+
145+
/* Radios and Checkboxes*/
146+
$input-control-color: #eee;
147+
$input-control-color-focus: $theme01;
148+
149+
/* Form transitions */
150+
$input-transition: .1s all ease-in-out;
151+
152+
/* Icons */
153+
$input-icon-color: #eee;
154+
$input-icon-bg-color: #797979;

0 commit comments

Comments
 (0)