Skip to content

Commit 30e5a1d

Browse files
committed
use better gray
1 parent a3d9e97 commit 30e5a1d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/render-modern/viewClear.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import type { Frame } from '@/lib/frame/types'
99
import { VIEWHT, SCRWTH, SBARHT } from '@/core/screen'
1010
import { getAlignment } from '@/core/shared'
1111

12+
const SOLID_GRAY = '#A9A9A9'
13+
1214
type ViewClearDeps = {
1315
screenX: number
1416
screenY: number
@@ -43,7 +45,7 @@ export function viewClear(deps: ViewClearDeps): (frame: Frame) => Frame {
4345
topLeft: { x: 0, y: SBARHT },
4446
width: SCRWTH,
4547
height: VIEWHT,
46-
fillColor: '#808080' // Solid gray background
48+
fillColor: SOLID_GRAY
4749
}
4850
: {
4951
id: 'view-clear-background',

0 commit comments

Comments
 (0)