Skip to content

Commit 0961e22

Browse files
b214
1 parent 2ffb2f6 commit 0961e22

4 files changed

Lines changed: 36 additions & 61 deletions

File tree

src/Core/Theme/Getters.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131

3232
$value: if(map.has-key($theme, $node), map.get($theme, $node), null);
3333

34-
@if ($value != null and list.length($keys) > 0) {
34+
@if (list.length($keys) > 0) {
3535
@for $key from 1 through list.length($keys) {
3636
@if ($value != null) {
3737
$value: if(map.has-key($value, list.nth($keys, $key)), map.get($value, list.nth($keys, $key)), null);
38-
// if key is the last item
38+
// if the $key is the last item
3939
@if (list.length($keys) == $key) {
4040
@return $value;
4141
}

src/Modules/Utilities/index.scss

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -596,9 +596,13 @@ $helpers: (
596596
("tiny", 73%),
597597
("small", 85%),
598598
("large", 120%),
599-
("big", 175%),
600-
("huge", 200%),
601-
("giant", 350%)
599+
("larger", 145%),
600+
("largest", 170%),
601+
("big", 200%),
602+
("bigger", 225%),
603+
("biggest", 250%),
604+
("huge", 350%),
605+
("giant", 450%)
602606
)
603607
),
604608
///

src/options.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -867,7 +867,7 @@ $options: (
867867
'settings': (
868868
'selection': (
869869
'color' : white,
870-
'background-color': theme('color', 'primary')
870+
'background-color': lighten(theme('color', 'primary'), 8.5%)
871871
),
872872
'horizontal-rule': (
873873
'border' : 0,

src/themes.scss

Lines changed: 26 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -39,56 +39,7 @@ $themes: (
3939
'style' : solid,
4040
'radius': 2px,
4141
),
42-
'shadow': 0 .25em .5em 0 rgba(0, 0, 0, 0.14),
43-
//////////////////////////////////////////////////////////
44-
// You can use this section to override/change
45-
// the all default settings in the options.scss API file.
46-
'classnames': (
47-
/*
48-
'panel': (
49-
'name' : 'box',
50-
'headline': 'spot'
51-
),
52-
'grid': (
53-
'offset': 'off'
54-
)
55-
*/
56-
),
57-
'components': (
58-
/*'tabnav': (
59-
'border-bottom': 4px
60-
),*/
61-
/*
62-
'navbar': (
63-
'brand': (
64-
'img-width': 9rem
65-
)
66-
),
67-
'alert': (
68-
'enabled': false
69-
)
70-
*/
71-
),
72-
'elements': (
73-
/*'button': (
74-
'font-weight': 500
75-
)*/
76-
),
77-
// You can use this section to override/change the
78-
// all default variable of utilities in the
79-
// Modules/Utilities/index.scss API file.
80-
'utilities': (
81-
//'enabled': false, // this option disables all helpers (default true).
82-
/*
83-
'flex-wrap': (
84-
'enabled': false
85-
),
86-
'overflow': (
87-
'prefix': 'flow-'
88-
)
89-
*/
90-
)
91-
//////////////////////////////////////////////////////////
42+
'shadow': 0 .25em .5em 0 rgba(0, 0, 0, 0.14)
9243
),
9344
//
9445
// 02. Dark Theme (beta)
@@ -122,6 +73,17 @@ $themes: (
12273
//////////////////////////////////////////////////////////
12374
// You can use this section to override/change
12475
// the all default settings in the options.scss API file.
76+
'classnames': (
77+
/*
78+
'panel': (
79+
'name' : 'box',
80+
'headline': 'spot'
81+
),
82+
'grid': (
83+
'offset': 'off'
84+
)
85+
*/
86+
),
12587
'components': (
12688
'menu': (
12789
'background-color': lighten(#222226, 2.5%),
@@ -150,11 +112,6 @@ $themes: (
150112
'background-color': #302f35
151113
)
152114
),
153-
'table':(
154-
'caption' : (
155-
'border-bottom': 4px solid #474a59
156-
)
157-
),
158115
'typography': (
159116
'href': (
160117
'color': #5580ff,
@@ -163,6 +120,20 @@ $themes: (
163120
)
164121
)
165122
)
123+
),
124+
// You can use this section to override/change the
125+
// all default variable of utilities in the
126+
// Modules/Utilities/index.scss API file.
127+
'utilities': (
128+
//'enabled': false, // this option disables all helpers (default true).
129+
/*
130+
'flex-wrap': (
131+
'enabled': false
132+
),
133+
'overflow': (
134+
'prefix': 'flow-'
135+
)
136+
*/
166137
)
167138
//////////////////////////////////////////////////////////
168139
),

0 commit comments

Comments
 (0)