This repository has been archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import ITheme from './theme-interface' | ||
import defaultTheme from './brave-default' | ||
import colors from './colors' | ||
|
||
const welcomeDarkTheme: ITheme = { | ||
...defaultTheme, | ||
name: 'Welcome Dark', | ||
color: { | ||
...defaultTheme.color, | ||
text: colors.white, | ||
panelBackground: colors.grey900 | ||
} | ||
} | ||
|
||
export default welcomeDarkTheme |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import ITheme from './theme-interface' | ||
import defaultTheme from './brave-default' | ||
import colors from './colors' | ||
|
||
const welcomeLightTheme: ITheme = { | ||
...defaultTheme, | ||
name: 'Welcome Light', | ||
color: { | ||
...defaultTheme.color, | ||
text: colors.neutral900, | ||
panelBackground: '#F9F9FD', | ||
panelBackgroundSecondary: colors.neutral000 | ||
} | ||
} | ||
|
||
export default welcomeLightTheme |
This file contains 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