Skip to content

Commit

Permalink
v0.0.2.1 - change spoiler color
Browse files Browse the repository at this point in the history
  • Loading branch information
Juby210 committed Apr 4, 2021
1 parent 6262bc8 commit 43b88c0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
minSdkVersion 21
targetSdkVersion 29
versionCode 2
versionName "0.0.2"
versionName "0.0.2.1"
}

buildTypes {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/aliucord/themer/Descriptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public class Descriptions {
String bg = "One of background colors";
put("primary_630", bg);
put("primary_660", bg);
put("primary_700", "One of background colors (used for example for embeds)");
put("primary_700", "One of background colors (used for example for embeds and spoilers)");
put("primary_800", bg);
put("primary_dark_600", "One of background colors (colorBackgroundPrimary)");
put("primary_dark_630", "One of background colors (used for example for channels list background)");
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/com/aliucord/themer/ReplaceAttrs.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ private Map<String, ColorEntry> getRawMap() {
put("primary_700", new ColorEntry("color_primary_700", simplebgs));
put("primary_900", new ColorEntry("color_primary_900", "__"));
put("theme_chat_mentioned_me", new ColorEntry("mention_highlight"));
put("theme_chat_spoiler_bg", new ColorEntry("color_primary_700", simplebgs));
put("theme_chat_spoiler_inapp_bg", new ColorEntry("color_primary_600", simplebg));

for (String n : new String[]{"600", "660", "800"})
put("primary_" + n, new ColorEntry("color_primary_" + n, simplebg));
Expand Down

0 comments on commit 43b88c0

Please sign in to comment.