forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Light branding for the reference site (WordPress#65764)
* Update theme.js * auareyou changes Color changes and added static directory to swap out logo * Image swap * Typography * Update theme.js * Format storybook/theme.js * Logo lossless compression --------- Co-authored-by: Marco Ciampini <[email protected]>
- Loading branch information
Showing
3 changed files
with
34 additions
and
2 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
|
@@ -6,6 +6,37 @@ import { create } from '@storybook/theming/create'; | |
export default create( { | ||
base: 'light', | ||
brandTitle: 'WordPress Components', | ||
brandImage: | ||
'https://s.w.org/style/images/about/WordPress-logotype-wmark.png', | ||
brandImage: './[email protected]', | ||
|
||
// Typography | ||
fontBase: | ||
'-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif', | ||
fontCode: 'monospace', | ||
|
||
// | ||
colorPrimary: '#3858E9', | ||
colorSecondary: '#3858E9', | ||
|
||
// UI | ||
appBg: '#ffffff', | ||
appContentBg: '#ffffff', | ||
appPreviewBg: '#ffffff', | ||
appBorderColor: '#DCDCDE', | ||
appBorderRadius: 4, | ||
|
||
// Text colors | ||
textColor: '#10162F', | ||
textInverseColor: '#ffffff', | ||
|
||
// Toolbar default and active colors | ||
barTextColor: '#9E9E9E', | ||
barSelectedColor: '#3858E9', | ||
barHoverColor: '#3858E9', | ||
barBg: '#ffffff', | ||
|
||
// Form colors | ||
inputBg: '#ffffff', | ||
inputBorder: '#10162F', | ||
inputTextColor: '#10162F', | ||
inputBorderRadius: 2, | ||
} ); |