fix(electron): align startup background color with web UI dark token#118
Merged
Conversation
Electron 시작 화면과 BrowserWindow 초기 배경이 #0a0a0b로, 웹 UI 다크 테마 토큰 --background(#0a0a0c)와 미세하게 달랐다. 세 곳 모두 #0a0a0c로 통일해 앱 로드 전후의 배경이 끊김 없이 이어지게 한다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
배경
Google AI Studio 대비 UI/UX 검토 과정에서 Electron 시작 화면 배경(#0a0a0b)과 웹 UI 다크 테마 토큰 --background(#0a0a0c)가 미세하게 다른 것을 확인했습니다.
변경 내용
electron/main.mjs: BrowserWindow 초기 backgroundColor를 #0a0a0c로 변경electron/assets/status.html,electron/assets/docker-missing.html: body 배경을 #0a0a0c로 변경세 곳 모두 웹 UI 다크 토큰과 같은 값을 쓰므로, 시작 화면에서 웹 UI 로드로 넘어갈 때 배경이 끊김 없이 이어집니다.
검증
색상 값만 바뀌는 변경으로,
grep -rn 0a0a0b electron/결과가 비어 있음을 확인했습니다. 육안 확인은 Electron 앱 실행 후 시작 화면과 웹 UI 전환 시점에서 가능합니다.