File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/main/kotlin/com/spoiligaming/explorer/ui Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,8 @@ object MapleColorPalette {
19
19
val defaultAccent = Color (0xFFE85D9B )
20
20
val defaultText = Color (0xFFFFFFFF )
21
21
22
- private val _text = mutableStateOf(Color .White )
22
+ private val _text =
23
+ mutableStateOf(ColorPaletteUtility .convertStringToColor(config.textColor))
23
24
var text: Color
24
25
get() = _text .value
25
26
set(value) {
@@ -34,7 +35,8 @@ object MapleColorPalette {
34
35
_accent .value = value
35
36
}
36
37
37
- private val _fadedText = mutableStateOf(Color (0xFFCCCCCC ))
38
+ private val _fadedText =
39
+ mutableStateOf(ColorPaletteUtility .convertStringToColor(config.fadedTextColor))
38
40
var fadedText: Color
39
41
get() = _fadedText .value
40
42
set(value) {
You can’t perform that action at this time.
0 commit comments