11import { createState , type Stateful } from "dreamland/core" ;
22import { ThemeVars , type Theme } from "./ui/theme" ;
33import { Tab , Tabs } from "./tabs" ;
4+ import { Omnibox } from "./Omnibox" ;
45
56class StatefulClass {
67 constructor ( state : Stateful < any > ) {
@@ -16,22 +17,22 @@ export class Browser extends StatefulClass {
1617 super ( state ) ;
1718
1819 this . theme = {
19- frame_bg : [ 40 , 40 , 40 ] ,
20- toolbar_bg : [ 60 , 60 , 60 ] ,
21- toolbar_button_fg : [ 199 , 199 , 199 ] ,
22- toolbar_fg : [ 199 , 199 , 199 ] ,
20+ frame_bg : [ 231 , 238 , 245 ] ,
21+ toolbar_bg : [ 211 , 218 , 255 ] ,
22+ toolbar_button_fg : [ 65 , 72 , 76 ] ,
23+ toolbar_fg : [ 65 , 72 , 76 ] ,
2324
2425 inactive_tab_bg : [ 40 , 40 , 40 ] ,
25- inactive_tab_fg : [ 199 , 199 , 199 ] ,
26- active_tab_fg : [ 227 , 227 , 227 ] ,
26+ inactive_tab_fg : [ 95 , 92 , 96 ] ,
27+ active_tab_fg : [ 65 , 72 , 76 ] ,
2728
28- button_bg : [ 60 , 60 , 60 ] ,
29+ button_bg : [ 231 , 238 , 0 ] ,
2930
30- ntp_bg : [ 60 , 60 , 60 ] ,
31+ ntp_bg : [ 231 , 238 , 0 ] ,
3132 ntp_fg : [ 232 , 234 , 237 ] ,
3233 ntp_link_fg : [ 138 , 180 , 248 ] ,
3334
34- omnibox_bg : [ 40 , 40 , 40 ] ,
35+ omnibox_bg : [ 221 , 228 , 235 ] ,
3536 omnibox_fg : [ 227 , 227 , 227 ] ,
3637
3738 bookmark_fg : [ 199 , 199 , 199 ] ,
@@ -46,6 +47,7 @@ export class Browser extends StatefulClass {
4647 < div >
4748 < ThemeVars colors = { use ( this . theme ) } />
4849 < Tabs />
50+ < Omnibox />
4951 </ div >
5052 ) ;
5153 }
0 commit comments