Skip to content

Commit c7da162

Browse files
b252
1 parent a14cbfa commit c7da162

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Punica's API-based structure allows you to create or customize a CSS framework t
4747

4848
### TODO List
4949
- [x] Default Theme
50-
- [ ] Default Dark Theme (95%)
50+
- [ ] Default Dark Theme (testing)
5151
- [x] Documentation
5252
- [ ] API Documentation (0%)
5353
- [ ] Starter Templates (65%)

src/Modules/Components/Card/Card.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@
145145
flex: inherit;
146146
.#{class('card', 'title')},
147147
.#{class('card', 'description')} {
148-
padding: calc(#{components('card', 'padding')} / 2) calc(#{components('card', 'padding')} * 3);
148+
padding: components('card', 'padding');
149149
}
150150
.#{class('card', 'description')} {
151151
flex: 1;

src/punica.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
////////////////////////////////////////////////////////////////
1111
///-------------------------------------------------------------
12-
$active-theme: default;
12+
$active-theme: dark;
1313
///-------------------------------------------------------------
1414
////////////////////////////////////////////////////////////////
1515
$theme-name: if(map.has-key(get.$themes, $active-theme), $active-theme, theme-not-found($active-theme));

src/themes.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ $themes: (
6161
'success' : #369138,
6262
'warning' : #c17f2a,
6363
'error' : #CC2B52,
64-
'dark' : #393644
64+
'dark' : #29292f
6565
),
6666
'border': (
67-
'color' : #373a48,
67+
'color' : #454859,
6868
'width' : 1px,
6969
'style' : solid,
7070
'radius': 2px,
@@ -97,7 +97,7 @@ $themes: (
9797
'navbar': (
9898
'background-color': lighten(#222226, 2.5%),
9999
'input': (
100-
'background-color': #2f2f35
100+
'background-color': #29292f
101101
),
102102
'menu': (
103103
'background-color': lighten(#222226, 2.5%),
@@ -115,7 +115,7 @@ $themes: (
115115
),
116116
'form': (
117117
'input': (
118-
'background-color': #2e2d33
118+
'background-color': #28282d
119119
)
120120
),
121121
'typography': (

0 commit comments

Comments
 (0)