From 751691376eb3f2bcec8497e74af2262705d8d69a Mon Sep 17 00:00:00 2001
From: hawkff <109485367+hawkff@users.noreply.github.com>
Date: Sat, 20 Jun 2026 18:51:56 -0400
Subject: [PATCH] fix(theme): declare Dracula canvas colors in base values
(MissingDefaultResource)
dracula_background / dracula_surface / dracula_on_surface existed only in
values-night, so release lint failed with MissingDefaultResource (the colors could
be queried in a non-night configuration and crash). Add base declarations using the
same dark Dracula palette (the Dracula theme forces night mode, so these are a
correctness fallback). Fixes the 3 lint errors that blocked assembleOssRelease;
verified full assembleOssRelease now passes lint + signs.
---
app/src/main/res/values/colors.xml | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
index cad484329..3ddd0856b 100644
--- a/app/src/main/res/values/colors.xml
+++ b/app/src/main/res/values/colors.xml
@@ -349,4 +349,12 @@
#EBF9F3
#F1EAFB
+
+ #282A36
+ #343746
+ #F8F8F2
+
\ No newline at end of file