danoniplus 44.5.19 → 44.5.21

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +146 -146
  3. package/danoni/dTemplate.html +61 -61
  4. package/danoni/danoni0.html +180 -180
  5. package/danoni/danoni0_remote.html +132 -132
  6. package/danoni/danoni2.html +45 -45
  7. package/danoni/danoni3.html +126 -126
  8. package/danoni/danoni4_skin.html +69 -69
  9. package/danoni/danoni5.html +255 -255
  10. package/danoni/danoniA.txt +30 -30
  11. package/danoni/danoniA2.txt +11 -11
  12. package/danoni/dos/0001_ThrustUp.txt +73 -73
  13. package/danoni/dos/0002_Combative.txt +30 -30
  14. package/img/note/aaShadow.svg +6 -6
  15. package/img/note/arrow.svg +6 -6
  16. package/img/note/arrowShadow.svg +6 -6
  17. package/img/note/c.svg +6 -6
  18. package/img/note/giko.svg +6 -6
  19. package/img/note/iyo.svg +6 -6
  20. package/img/note/monar.svg +6 -6
  21. package/img/note/morara.svg +6 -6
  22. package/img/note/onigiri.svg +6 -6
  23. package/js/danoni_main.js +15306 -15306
  24. package/js/lib/danoni_constants.js +4807 -4806
  25. package/js/lib/danoni_localbinary.js +29 -29
  26. package/js/lib/legacy_functions.js +216 -216
  27. package/js/sample/danoni_custom-003.js +74 -74
  28. package/js/template/danoni_custom.js +233 -233
  29. package/js/template/danoni_main.js +17 -17
  30. package/js/template/danoni_setting.js +445 -445
  31. package/jsconfig.json +12 -12
  32. package/package.json +23 -23
  33. package/skin/danoni_skin_background.css +8 -8
  34. package/skin/danoni_skin_default.css +216 -216
  35. package/skin/danoni_skin_default.js +90 -90
  36. package/skin/danoni_skin_light.css +216 -216
  37. package/skin/danoni_skin_light.js +90 -90
  38. package/skin/danoni_skin_skyblue.css +216 -216
  39. package/skin/danoni_skin_skyblue.js +90 -90
@@ -1,91 +1,91 @@
1
- 'use strict';
2
- /**
3
- * Dancing☆Onigiri スキンjsファイル
4
- */
5
-
6
- /**
7
- * タイトル画面 [Scene: Title / Melon]
8
- */
9
- g_skinJsObj.title.push(() => {
10
-
11
- // 背景矢印
12
- // $id(`lblArrow`).left = `0px`;
13
-
14
- });
15
-
16
- /**
17
- * データ管理画面 [Scene: Data Management / Pear]
18
- */
19
- g_skinJsObj.dataMgt.push(() => {
20
-
21
- });
22
-
23
- /**
24
- * デバッグ確認画面 [Scene: Precondition / Mango]
25
- */
26
- g_skinJsObj.precondition.push(() => {
27
-
28
- });
29
-
30
- /**
31
- * オプション画面(初期表示) [Scene: Option / Lime]
32
- */
33
- g_skinJsObj.option.push(() => {
34
-
35
- // $id(`difficultySprite`).left = `25px`;
36
- // $id(`speedSprite`).left = `25px`;
37
- // $id(`motionSprite`).left = `25px`;
38
- // $id(`reverseSprite`).left = `25px`;
39
- // $id(`shuffleSprite`).left = `25px`;
40
- // $id(`autoPlaySprite`).left = `25px`;
41
- // $id(`gaugeSprite`).left = `25px`;
42
- // $id(`adjustmentSprite`).left = `25px`;
43
- // $id(`fadeinSprite`).left = `25px`;
44
- // $id(`volumeSprite`).left = `25px`;
45
-
46
- });
47
-
48
- /**
49
- * 表示変更(初期表示) [Scene: Settings-Display / Lemon]
50
- */
51
- g_skinJsObj.settingsDisplay.push(() => {
52
-
53
- // $id(`displaySprite`).left = `25px`;
54
- // $id(`appearanceSprite`).left = `25px`;
55
-
56
- });
57
-
58
- /**
59
- * 表示変更(初期表示) [Scene: Ex-Settings / apple]
60
- */
61
- g_skinJsObj.exSetting.push(() => {
62
-
63
- });
64
-
65
- /**
66
- * キーコンフィグ画面(初期表示) [Scene: KeyConfig / Orange]
67
- */
68
- g_skinJsObj.keyconfig.push(() => {
69
-
70
- });
71
-
72
- /**
73
- * ロード開始時
74
- */
75
- g_skinJsObj.preloading.push(() => {
76
-
77
- });
78
-
79
- /**
80
- * メイン画面(初期表示) [Scene: Main / Banana]
81
- */
82
- g_skinJsObj.main.push(() => {
83
-
84
- });
85
-
86
- /**
87
- * 結果画面(初期表示) [Scene: Result / Grape]
88
- */
89
- g_skinJsObj.result.push(() => {
90
-
1
+ 'use strict';
2
+ /**
3
+ * Dancing☆Onigiri スキンjsファイル
4
+ */
5
+
6
+ /**
7
+ * タイトル画面 [Scene: Title / Melon]
8
+ */
9
+ g_skinJsObj.title.push(() => {
10
+
11
+ // 背景矢印
12
+ // $id(`lblArrow`).left = `0px`;
13
+
14
+ });
15
+
16
+ /**
17
+ * データ管理画面 [Scene: Data Management / Pear]
18
+ */
19
+ g_skinJsObj.dataMgt.push(() => {
20
+
21
+ });
22
+
23
+ /**
24
+ * デバッグ確認画面 [Scene: Precondition / Mango]
25
+ */
26
+ g_skinJsObj.precondition.push(() => {
27
+
28
+ });
29
+
30
+ /**
31
+ * オプション画面(初期表示) [Scene: Option / Lime]
32
+ */
33
+ g_skinJsObj.option.push(() => {
34
+
35
+ // $id(`difficultySprite`).left = `25px`;
36
+ // $id(`speedSprite`).left = `25px`;
37
+ // $id(`motionSprite`).left = `25px`;
38
+ // $id(`reverseSprite`).left = `25px`;
39
+ // $id(`shuffleSprite`).left = `25px`;
40
+ // $id(`autoPlaySprite`).left = `25px`;
41
+ // $id(`gaugeSprite`).left = `25px`;
42
+ // $id(`adjustmentSprite`).left = `25px`;
43
+ // $id(`fadeinSprite`).left = `25px`;
44
+ // $id(`volumeSprite`).left = `25px`;
45
+
46
+ });
47
+
48
+ /**
49
+ * 表示変更(初期表示) [Scene: Settings-Display / Lemon]
50
+ */
51
+ g_skinJsObj.settingsDisplay.push(() => {
52
+
53
+ // $id(`displaySprite`).left = `25px`;
54
+ // $id(`appearanceSprite`).left = `25px`;
55
+
56
+ });
57
+
58
+ /**
59
+ * 表示変更(初期表示) [Scene: Ex-Settings / apple]
60
+ */
61
+ g_skinJsObj.exSetting.push(() => {
62
+
63
+ });
64
+
65
+ /**
66
+ * キーコンフィグ画面(初期表示) [Scene: KeyConfig / Orange]
67
+ */
68
+ g_skinJsObj.keyconfig.push(() => {
69
+
70
+ });
71
+
72
+ /**
73
+ * ロード開始時
74
+ */
75
+ g_skinJsObj.preloading.push(() => {
76
+
77
+ });
78
+
79
+ /**
80
+ * メイン画面(初期表示) [Scene: Main / Banana]
81
+ */
82
+ g_skinJsObj.main.push(() => {
83
+
84
+ });
85
+
86
+ /**
87
+ * 結果画面(初期表示) [Scene: Result / Grape]
88
+ */
89
+ g_skinJsObj.result.push(() => {
90
+
91
91
  });
@@ -1,217 +1,217 @@
1
- @charset "UTF-8";
2
-
3
- /* ----------------------------------------
4
- Dancing☆Onigiri (CW Edition)
5
- スキンcssファイル (light)
6
-
7
- Created : 2019/11/04
8
- Revised : 2025/02/01 (v39.0.0)
9
-
10
- https://github.com/cwtickle/danoniplus
11
- ------------------------------------------ */
12
-
13
- :root {
14
- /* 背景 */
15
- --background: linear-gradient(#dddddd, #ffffff);
16
- /* --back-chartDetail: var(--background); */
17
- /* --back-difListL: var(--background); */
18
- /* --back-difListR: var(--back-difListL, var(--background)); */
19
-
20
- /* タイトル共通色 */
21
- --title-base: #222222;
22
-
23
- /* 画面タイトル色 */
24
- --title-dancing: #000099;
25
- --title-onigiri: #990000;
26
- --title-star: #999900;
27
- --title-display: #777700;
28
-
29
- /* タイトルサイズ */
30
- --title-siz-x: 40px;
31
-
32
- /* 設定別ヘッダー */
33
- --settings-difficulty-x: #990000;
34
- --settings-speed-x: #777700;
35
- --settings-motion-x: #667700;
36
- --settings-scroll-x: #557733;
37
- --settings-shuffle-x: #337733;
38
- --settings-autoPlay-x: #337744;
39
- --settings-gauge-x: #227755;
40
- --settings-adjustment-x: #007777;
41
- --settings-fadein-x: #005577;
42
- --settings-volume-x: #003377;
43
- --settings-appearance-x: #9900ff;
44
- --settings-opacity-x: #cc00ff;
45
- --settings-hitPosition-x: #ff00ff;
46
- --settings-playWindow-x: #000099;
47
- --settings-stepArea-x: #222299;
48
- --settings-frzReturn-x: #003377;
49
- --settings-shaking-x: #007777;
50
- --settings-effect-x: #337744;
51
- --settings-camoufrage-x: #337733;
52
- --settings-swapping-x: #557733;
53
- --settings-judgRange-x: #777700;
54
- --settings-autoRetry-x: #9900ff;
55
-
56
- /* 譜面選択部分背景 */
57
- --settings-difSelector: #eeeeee;
58
-
59
- /* 設定無効化時 */
60
- --settings-disabled-x: #999999;
61
-
62
- /* フェードインバー */
63
- --settings-fadeinBar-x: #000000;
64
-
65
- /* ゲージ表示 (可変) */
66
- --settings-lifeVal-x: #996600;
67
-
68
- /* ゲージ設定枠 */
69
- --settings-bc-gaugeTable: #222222;
70
- --settings-slice-gaugeTable-x: 1;
71
- --settings-border-gaugeTable-x: 1px;
72
-
73
- /* キーコンフィグ関連 */
74
- --keyconfig-warning-x: #999900;
75
- --keyconfig-imgType-x: #003377;
76
- --keyconfig-colorType-x: #773300;
77
- --keyconfig-changekey-x: #999900;
78
- --keyconfig-defaultkey-x: #000099;
79
- /* --keyconfig-colorGr-x: var(--settings-colorType-x); */
80
- /* --keyconfig-shuffleGr-x: var(--settings-shuffle-x); */
81
- /* --keyconfig-stepRtnGr-x: var(--settings-adjustment-x); */
82
-
83
- /* 判定 */
84
- --common-ii: #009999;
85
- --common-shakin: #009900;
86
- --common-matari: #cc8800;
87
- --common-shobon: #0000cc;
88
- --common-uwan: #cc0000;
89
- --common-kita: #999900;
90
- --common-iknai: #669900;
91
- --common-combo: #000000;
92
- --common-score-x: #000000;
93
- /* --common-comboJ: var(--common-kita); */
94
- /* --common-comboFJ: var(--common-ii); */
95
- /* --common-diffFast: var(--common-matari); */
96
- /* --common-diffSlow: var(--common-shobon); */
97
- /* --common-estAdj: var(--common-shakin); */
98
- /* --common-excessive: var(--common-kita); */
99
-
100
- /* ステップゾーン */
101
- --main-stepKeyDown: #009999;
102
- --main-stepDefault: #666666;
103
- --main-stepDummy: #666666;
104
- --main-stepIi: var(--common-ii);
105
- --main-stepShakin: var(--common-shakin);
106
- --main-stepMatari: var(--common-matari);
107
- --main-stepShobon: var(--common-shobon);
108
- --main-stepExcessive: #999900;
109
- --main-objStepShadow: #eeeeee;
110
- --main-objFrzShadow: #666666;
111
- --main-frzHitTop: #cccccc;
112
-
113
- /* ライフゲージ */
114
- --life-max: #cccc66;
115
- --life-cleared: #66cccc;
116
- --life-failed: #999999;
117
-
118
- /* ライフゲージ本体 */
119
- --life-background: #cccccc;
120
- --life-bg-border: #555555;
121
- --life-color-border-x: #cccccc;
122
-
123
- /* 結果画面 */
124
- --result-lbl-x: #333333;
125
- --result-style-x: #111111;
126
-
127
- --result-bc-playwindow: #666666;
128
- --result-slice-playwindow-x: 1;
129
- --result-border-playwindow-x: 1px;
130
-
131
- --result-score-x: #000000;
132
- --result-scoreHiBracket-x: #222222;
133
- --result-scoreHi-x: #000000;
134
- --result-scoreHiPlus-x: #777700;
135
- --result-noRecord-x: #222222;
136
-
137
- --result-allPerfect: #999999;
138
- --result-perfect: #999900;
139
- --result-fullCombo: #007777;
140
- --result-cleared: #666600;
141
- --result-failed: #990000;
142
-
143
- /* 結果画面のCleared/Failedを表示している文字のサイズ */
144
- --result-siz-window-x: 80px;
145
-
146
- /* ボタン */
147
- /* Click Here */
148
- --button-bg-start: #dddddd;
149
- --button-color-start-x: #000000;
150
- --button-bgHover-start: #999999;
151
- --button-colorHover-start-x: #000000;
152
-
153
- /* 汎用 */
154
- --button-bg-default: #eeeeee;
155
- --button-color-default-x: #000000;
156
- --button-bgHover-default: #bbbbbb;
157
- --button-colorHover-default-x: #000000;
158
-
159
- /* 汎用(背景が透明) */
160
- --button-bg-defaultNo: #00000000;
161
- --button-bgHover-defaultNo: #bbbbbb;
162
-
163
- /* 設定用ミニボタン */
164
- --button-bg-mini: #cccccc;
165
- --button-color-mini-x: #000000;
166
- --button-bgHover-mini: #999999;
167
- --button-colorHover-mini-x: #000000;
168
-
169
- /* 戻るボタン */
170
- --button-bg-back: #ccccff;
171
- --button-color-back-x: #000000;
172
- --button-bgHover-back: #9999ff;
173
- --button-colorHover-back-x: #000000;
174
-
175
- /* 設定ボタン */
176
- --button-bg-setting: #ffffcc;
177
- --button-color-setting-x: #000000;
178
- --button-bgHover-setting: #ffff66;
179
- --button-colorHover-setting-x: #000000;
180
-
181
- /* 開始ボタン */
182
- --button-bg-next: #ffcccc;
183
- --button-color-next-x: #000000;
184
- --button-bgHover-next: #ff9999;
185
- --button-colorHover-next-x: #000000;
186
-
187
- /* リセットボタン */
188
- --button-bg-reset: #ccffcc;
189
- --button-color-reset-x: #000000;
190
- --button-bgHover-reset: #99ff99;
191
- --button-colorHover-reset-x: #000000;
192
-
193
- /* 外部SNSボタン */
194
- --button-bg-sns: #ccffff;
195
- --button-color-sns-x: #000000;
196
- --button-bgHover-sns: #66ffff;
197
- --button-colorHover-sns-x: #000000;
198
- --button-bgHover-discord: #bbbbbb;
199
-
200
- /* ON/OFFボタン */
201
- --button-color-off-x: #cccccc;
202
- --button-border-off-x: #00000000 #cccccc;
203
- --button-color-on-x: #000000;
204
- --button-border-on-x: #00000000 #333333;
205
-
206
- /* ON/OFFボタン Reverse用 */
207
- --button-color-offRev-x: #666666;
208
- --button-border-offRev-x: #00000000 #666666;
209
- --button-color-onRev-x: #000000;
210
- --button-border-onRev-x: #00000000 #557733;
211
-
212
- /* ON/OFFボタン 無効時 */
213
- --button-bg-offDisabled: #999999;
214
- --button-color-offDisabled-x: #333333;
215
- --button-bg-onDisabled: #ffffff;
216
- --button-color-onDisabled-x: #009999;
1
+ @charset "UTF-8";
2
+
3
+ /* ----------------------------------------
4
+ Dancing☆Onigiri (CW Edition)
5
+ スキンcssファイル (light)
6
+
7
+ Created : 2019/11/04
8
+ Revised : 2025/02/01 (v39.0.0)
9
+
10
+ https://github.com/cwtickle/danoniplus
11
+ ------------------------------------------ */
12
+
13
+ :root {
14
+ /* 背景 */
15
+ --background: linear-gradient(#dddddd, #ffffff);
16
+ /* --back-chartDetail: var(--background); */
17
+ /* --back-difListL: var(--background); */
18
+ /* --back-difListR: var(--back-difListL, var(--background)); */
19
+
20
+ /* タイトル共通色 */
21
+ --title-base: #222222;
22
+
23
+ /* 画面タイトル色 */
24
+ --title-dancing: #000099;
25
+ --title-onigiri: #990000;
26
+ --title-star: #999900;
27
+ --title-display: #777700;
28
+
29
+ /* タイトルサイズ */
30
+ --title-siz-x: 40px;
31
+
32
+ /* 設定別ヘッダー */
33
+ --settings-difficulty-x: #990000;
34
+ --settings-speed-x: #777700;
35
+ --settings-motion-x: #667700;
36
+ --settings-scroll-x: #557733;
37
+ --settings-shuffle-x: #337733;
38
+ --settings-autoPlay-x: #337744;
39
+ --settings-gauge-x: #227755;
40
+ --settings-adjustment-x: #007777;
41
+ --settings-fadein-x: #005577;
42
+ --settings-volume-x: #003377;
43
+ --settings-appearance-x: #9900ff;
44
+ --settings-opacity-x: #cc00ff;
45
+ --settings-hitPosition-x: #ff00ff;
46
+ --settings-playWindow-x: #000099;
47
+ --settings-stepArea-x: #222299;
48
+ --settings-frzReturn-x: #003377;
49
+ --settings-shaking-x: #007777;
50
+ --settings-effect-x: #337744;
51
+ --settings-camoufrage-x: #337733;
52
+ --settings-swapping-x: #557733;
53
+ --settings-judgRange-x: #777700;
54
+ --settings-autoRetry-x: #9900ff;
55
+
56
+ /* 譜面選択部分背景 */
57
+ --settings-difSelector: #eeeeee;
58
+
59
+ /* 設定無効化時 */
60
+ --settings-disabled-x: #999999;
61
+
62
+ /* フェードインバー */
63
+ --settings-fadeinBar-x: #000000;
64
+
65
+ /* ゲージ表示 (可変) */
66
+ --settings-lifeVal-x: #996600;
67
+
68
+ /* ゲージ設定枠 */
69
+ --settings-bc-gaugeTable: #222222;
70
+ --settings-slice-gaugeTable-x: 1;
71
+ --settings-border-gaugeTable-x: 1px;
72
+
73
+ /* キーコンフィグ関連 */
74
+ --keyconfig-warning-x: #999900;
75
+ --keyconfig-imgType-x: #003377;
76
+ --keyconfig-colorType-x: #773300;
77
+ --keyconfig-changekey-x: #999900;
78
+ --keyconfig-defaultkey-x: #000099;
79
+ /* --keyconfig-colorGr-x: var(--settings-colorType-x); */
80
+ /* --keyconfig-shuffleGr-x: var(--settings-shuffle-x); */
81
+ /* --keyconfig-stepRtnGr-x: var(--settings-adjustment-x); */
82
+
83
+ /* 判定 */
84
+ --common-ii: #009999;
85
+ --common-shakin: #009900;
86
+ --common-matari: #cc8800;
87
+ --common-shobon: #0000cc;
88
+ --common-uwan: #cc0000;
89
+ --common-kita: #999900;
90
+ --common-iknai: #669900;
91
+ --common-combo: #000000;
92
+ --common-score-x: #000000;
93
+ /* --common-comboJ: var(--common-kita); */
94
+ /* --common-comboFJ: var(--common-ii); */
95
+ /* --common-diffFast: var(--common-matari); */
96
+ /* --common-diffSlow: var(--common-shobon); */
97
+ /* --common-estAdj: var(--common-shakin); */
98
+ /* --common-excessive: var(--common-kita); */
99
+
100
+ /* ステップゾーン */
101
+ --main-stepKeyDown: #009999;
102
+ --main-stepDefault: #666666;
103
+ --main-stepDummy: #666666;
104
+ --main-stepIi: var(--common-ii);
105
+ --main-stepShakin: var(--common-shakin);
106
+ --main-stepMatari: var(--common-matari);
107
+ --main-stepShobon: var(--common-shobon);
108
+ --main-stepExcessive: #999900;
109
+ --main-objStepShadow: #eeeeee;
110
+ --main-objFrzShadow: #666666;
111
+ --main-frzHitTop: #cccccc;
112
+
113
+ /* ライフゲージ */
114
+ --life-max: #cccc66;
115
+ --life-cleared: #66cccc;
116
+ --life-failed: #999999;
117
+
118
+ /* ライフゲージ本体 */
119
+ --life-background: #cccccc;
120
+ --life-bg-border: #555555;
121
+ --life-color-border-x: #cccccc;
122
+
123
+ /* 結果画面 */
124
+ --result-lbl-x: #333333;
125
+ --result-style-x: #111111;
126
+
127
+ --result-bc-playwindow: #666666;
128
+ --result-slice-playwindow-x: 1;
129
+ --result-border-playwindow-x: 1px;
130
+
131
+ --result-score-x: #000000;
132
+ --result-scoreHiBracket-x: #222222;
133
+ --result-scoreHi-x: #000000;
134
+ --result-scoreHiPlus-x: #777700;
135
+ --result-noRecord-x: #222222;
136
+
137
+ --result-allPerfect: #999999;
138
+ --result-perfect: #999900;
139
+ --result-fullCombo: #007777;
140
+ --result-cleared: #666600;
141
+ --result-failed: #990000;
142
+
143
+ /* 結果画面のCleared/Failedを表示している文字のサイズ */
144
+ --result-siz-window-x: 80px;
145
+
146
+ /* ボタン */
147
+ /* Click Here */
148
+ --button-bg-start: #dddddd;
149
+ --button-color-start-x: #000000;
150
+ --button-bgHover-start: #999999;
151
+ --button-colorHover-start-x: #000000;
152
+
153
+ /* 汎用 */
154
+ --button-bg-default: #eeeeee;
155
+ --button-color-default-x: #000000;
156
+ --button-bgHover-default: #bbbbbb;
157
+ --button-colorHover-default-x: #000000;
158
+
159
+ /* 汎用(背景が透明) */
160
+ --button-bg-defaultNo: #00000000;
161
+ --button-bgHover-defaultNo: #bbbbbb;
162
+
163
+ /* 設定用ミニボタン */
164
+ --button-bg-mini: #cccccc;
165
+ --button-color-mini-x: #000000;
166
+ --button-bgHover-mini: #999999;
167
+ --button-colorHover-mini-x: #000000;
168
+
169
+ /* 戻るボタン */
170
+ --button-bg-back: #ccccff;
171
+ --button-color-back-x: #000000;
172
+ --button-bgHover-back: #9999ff;
173
+ --button-colorHover-back-x: #000000;
174
+
175
+ /* 設定ボタン */
176
+ --button-bg-setting: #ffffcc;
177
+ --button-color-setting-x: #000000;
178
+ --button-bgHover-setting: #ffff66;
179
+ --button-colorHover-setting-x: #000000;
180
+
181
+ /* 開始ボタン */
182
+ --button-bg-next: #ffcccc;
183
+ --button-color-next-x: #000000;
184
+ --button-bgHover-next: #ff9999;
185
+ --button-colorHover-next-x: #000000;
186
+
187
+ /* リセットボタン */
188
+ --button-bg-reset: #ccffcc;
189
+ --button-color-reset-x: #000000;
190
+ --button-bgHover-reset: #99ff99;
191
+ --button-colorHover-reset-x: #000000;
192
+
193
+ /* 外部SNSボタン */
194
+ --button-bg-sns: #ccffff;
195
+ --button-color-sns-x: #000000;
196
+ --button-bgHover-sns: #66ffff;
197
+ --button-colorHover-sns-x: #000000;
198
+ --button-bgHover-discord: #bbbbbb;
199
+
200
+ /* ON/OFFボタン */
201
+ --button-color-off-x: #cccccc;
202
+ --button-border-off-x: #00000000 #cccccc;
203
+ --button-color-on-x: #000000;
204
+ --button-border-on-x: #00000000 #333333;
205
+
206
+ /* ON/OFFボタン Reverse用 */
207
+ --button-color-offRev-x: #666666;
208
+ --button-border-offRev-x: #00000000 #666666;
209
+ --button-color-onRev-x: #000000;
210
+ --button-border-onRev-x: #00000000 #557733;
211
+
212
+ /* ON/OFFボタン 無効時 */
213
+ --button-bg-offDisabled: #999999;
214
+ --button-color-offDisabled-x: #333333;
215
+ --button-bg-onDisabled: #ffffff;
216
+ --button-color-onDisabled-x: #009999;
217
217
  }