We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3d9e97 commit 30e5a1dCopy full SHA for 30e5a1d
src/render-modern/viewClear.ts
@@ -9,6 +9,8 @@ import type { Frame } from '@/lib/frame/types'
9
import { VIEWHT, SCRWTH, SBARHT } from '@/core/screen'
10
import { getAlignment } from '@/core/shared'
11
12
+const SOLID_GRAY = '#A9A9A9'
13
+
14
type ViewClearDeps = {
15
screenX: number
16
screenY: number
@@ -43,7 +45,7 @@ export function viewClear(deps: ViewClearDeps): (frame: Frame) => Frame {
43
45
topLeft: { x: 0, y: SBARHT },
44
46
width: SCRWTH,
47
height: VIEWHT,
- fillColor: '#808080' // Solid gray background
48
+ fillColor: SOLID_GRAY
49
}
50
: {
51
id: 'view-clear-background',
0 commit comments