Skip to content

Commit aec2fa3

Browse files
committed
[design] change theme name
1 parent 4fdf44b commit aec2fa3

File tree

5 files changed

+25
-25
lines changed

5 files changed

+25
-25
lines changed

‎src/css/theme.css‎

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -208,24 +208,24 @@
208208
background-color:rgb(var(--theme-preset-accent-chocorum))
209209
}
210210

211-
.theme-preset-background-sunbloom-01{
212-
background-color:rgb(var(--theme-preset-background-sunbloom-01))
211+
.theme-preset-background-sunburst-01{
212+
background-color:rgb(var(--theme-preset-background-sunburst-01))
213213
}
214214

215-
.theme-preset-background-sunbloom-02{
216-
background-color:rgb(var(--theme-preset-background-sunbloom-02))
215+
.theme-preset-background-sunburst-02{
216+
background-color:rgb(var(--theme-preset-background-sunburst-02))
217217
}
218218

219-
.theme-preset-background-sunbloom-03{
220-
background-color:rgb(var(--theme-preset-background-sunbloom-03))
219+
.theme-preset-background-sunburst-03{
220+
background-color:rgb(var(--theme-preset-background-sunburst-03))
221221
}
222222

223-
.theme-preset-background-sunbloom-04{
224-
background-color:rgb(var(--theme-preset-background-sunbloom-04))
223+
.theme-preset-background-sunburst-04{
224+
background-color:rgb(var(--theme-preset-background-sunburst-04))
225225
}
226226

227-
.theme-preset-accent-sunbloom{
228-
background-color:rgb(var(--theme-preset-accent-sunbloom))
227+
.theme-preset-accent-sunburst{
228+
background-color:rgb(var(--theme-preset-accent-sunburst))
229229
}
230230

231231
.theme-preset-background-coralgreen-01{

‎src/css/variables.css‎

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@
5656
--theme-preset-background-chocorum-03:25,25,25;
5757
--theme-preset-background-chocorum-04:25,25,25;
5858
--theme-preset-accent-chocorum:25,25,25;
59-
--theme-preset-background-sunbloom-01:25,25,25;
60-
--theme-preset-background-sunbloom-02:25,25,25;
61-
--theme-preset-background-sunbloom-03:25,25,25;
62-
--theme-preset-background-sunbloom-04:25,25,25;
63-
--theme-preset-accent-sunbloom:25,25,25;
59+
--theme-preset-background-sunburst-01:25,25,25;
60+
--theme-preset-background-sunburst-02:25,25,25;
61+
--theme-preset-background-sunburst-03:25,25,25;
62+
--theme-preset-background-sunburst-04:25,25,25;
63+
--theme-preset-accent-sunburst:25,25,25;
6464
--theme-preset-background-coralgreen-01:25,25,25;
6565
--theme-preset-background-coralgreen-02:25,25,25;
6666
--theme-preset-background-coralgreen-03:25,25,25;

‎src/index.html‎

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1382,15 +1382,15 @@ <h1 class="menu-item-header-text">Presets</h1>
13821382
</button>
13831383
</div>
13841384
<divclass="button-wrap form-inline">
1385-
<buttonclass="control-theme-preset-sunbloom theme-preset-button button mb-0" tabindex="-1">
1385+
<buttonclass="control-theme-preset-sunburst theme-preset-button button mb-0" tabindex="-1">
13861386
<divclass="theme-preset-preview">
1387-
<spanclass="theme-preset-background-01 theme-preset-background-sunbloom-01"></span>
1388-
<spanclass="theme-preset-background-02 theme-preset-background-sunbloom-02"></span>
1389-
<spanclass="theme-preset-background-03 theme-preset-background-sunbloom-03"></span>
1390-
<spanclass="theme-preset-background-04 theme-preset-background-sunbloom-04"></span>
1391-
<spanclass="theme-preset-accent theme-preset-accent-sunbloom"></span>
1387+
<spanclass="theme-preset-background-01 theme-preset-background-sunburst-01"></span>
1388+
<spanclass="theme-preset-background-02 theme-preset-background-sunburst-02"></span>
1389+
<spanclass="theme-preset-background-03 theme-preset-background-sunburst-03"></span>
1390+
<spanclass="theme-preset-background-04 theme-preset-background-sunburst-04"></span>
1391+
<spanclass="theme-preset-accent theme-preset-accent-sunburst"></span>
13921392
</div>
1393-
<spanclass="button-text small">Sun Bloom</span>
1393+
<spanclass="button-text small">Sun Burst</span>
13941394
</button>
13951395
</div>
13961396
<divclass="button-wrap form-inline">

‎src/js/control.js‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2609,10 +2609,10 @@ var control = (function(){
26092609
render.class();
26102610
}
26112611
},{
2612-
element: helper.e(".control-theme-preset-sunbloom"),
2612+
element: helper.e(".control-theme-preset-sunburst"),
26132613
type: "button",
26142614
func: function(){
2615-
theme.preset("sunbloom");
2615+
theme.preset("sunburst");
26162616
theme.style.check();
26172617
theme.render.color.shade();
26182618
theme.render.accent.color();

‎src/js/theme.js‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ var theme = (function(){
255255
radius: 0.75,
256256
style: "dark"
257257
},
258-
sunbloom: {
258+
sunburst: {
259259
color: {
260260
hsl: {
261261
h: 54,

0 commit comments

Comments
(0)