mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
Minor cleanup
This commit is contained in:
parent
3e447a824d
commit
48b86ceafc
@ -9,12 +9,14 @@ Storybook's manager UI is theme-able! You can change theme variables using [addo
|
|||||||
|
|
||||||
You can do this in an decorator, addon or in `.storybook/config.js`. Changing theme at runtime is supported!
|
You can do this in an decorator, addon or in `.storybook/config.js`. Changing theme at runtime is supported!
|
||||||
|
|
||||||
First, create or modify `.storybook/addons.js` to include registering addon-options:
|
First, create or modify `.storybook/addons.js` to include registering addon-options:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import '@storybook/addon-options/register';
|
import '@storybook/addon-options/register';
|
||||||
```
|
```
|
||||||
|
|
||||||
Then, modify `.storybook/config.js` to include your new options:
|
Then, modify `.storybook/config.js` to include your new options:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
import { addParameters, configure } from '@storybook/react';
|
import { addParameters, configure } from '@storybook/react';
|
||||||
|
|
||||||
@ -52,26 +54,39 @@ addParameters({
|
|||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
// TODO: update this with .color. changes
|
// Storybook-specific color palette
|
||||||
|
colorPrimary: primary color, // Storybook pink
|
||||||
|
colorSecondary: secondary color, // Blue
|
||||||
|
|
||||||
|
// UI
|
||||||
|
appBg: background.app,
|
||||||
|
appBorderColor: color.border,
|
||||||
|
appBorderRadius: 4,
|
||||||
|
|
||||||
|
// Fonts
|
||||||
|
fontBase: typography.fonts.base,
|
||||||
|
fontCode: typography.fonts.mono,
|
||||||
|
|
||||||
|
// Text colors
|
||||||
|
textColor: color.darkest,
|
||||||
|
textInverseColor: color.lightest,
|
||||||
|
|
||||||
|
// Toolbar default and active colors
|
||||||
|
barTextColor: color.mediumdark,
|
||||||
|
barSelectedColor: color.secondary,
|
||||||
|
barBgColor: color.lightest,
|
||||||
|
|
||||||
|
// Form colors
|
||||||
|
inputBg: color.lightest,
|
||||||
|
inputBorder: color.border,
|
||||||
|
inputTextColor: color.darkest,
|
||||||
|
inputBorderRadius: 4,
|
||||||
|
|
||||||
|
// Brand logo/text
|
||||||
|
brand: null,
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
mainBackground: applied to root `background`, // 'linear-gradient(to bottom right, black, gray'
|
|
||||||
mainBorder: applied to panels `border`, // '1px solid rgba(0,0,0,0.1)'
|
|
||||||
mainBorderColor: applied for most borders, // 'rgba(0,0,0,0.1)'
|
|
||||||
mainBorderRadius: applied to panels, buttons, inputs // 4
|
|
||||||
mainFill: applied to panels `background`, // 'rgba(255,255,255,0.89)'
|
|
||||||
barFill: applied to TabsBar `background`, // 'rgba(255,255,255,1)'
|
|
||||||
inputFill: applied to Input `background`, // 'rgba(0,0,0,0.05)'
|
|
||||||
mainTextFace: applied to root `font-family`,
|
|
||||||
mainTextColor: applied to root & buttons & input `color`, // black
|
|
||||||
mainTextSize: applied to root, // 13
|
|
||||||
dimmedTextColor: applied in less important text, // 'rgba(0,0,0,0.4)'
|
|
||||||
highlightColor: applied to indicate selection, // '#9fdaff'
|
|
||||||
successColor: applied to indicate positive, // '#0edf62'
|
|
||||||
failColor: applied to indicate negative, // '#ff3f3f'
|
|
||||||
warnColor: applied to indicate ow-ow, // 'orange'
|
|
||||||
monoTextFace: applied to pre,
|
|
||||||
layoutMargin: applied to space panels, // 10
|
|
||||||
overlayBackground: applied to overlay `background`, // 'linear-gradient(to bottom right, rgba(233, 233, 233, 0.6), rgba(255, 255, 255, 0.8))'
|
|
||||||
```
|
```
|
||||||
|
|
||||||
### Deep theming components
|
### Deep theming components
|
||||||
@ -164,7 +179,7 @@ The styles provided here support everything [emotion](https://emotion.sh/) does.
|
|||||||
|
|
||||||
## Adding more theme variables for addons
|
## Adding more theme variables for addons
|
||||||
|
|
||||||
If addons have a need for specific theme variables, the user has to add them.
|
If addons have a need for specific theme variables, the user has to add them.
|
||||||
We advise addons to reuse the variables listed above as much as possible.
|
We advise addons to reuse the variables listed above as much as possible.
|
||||||
|
|
||||||
Addon actions uses [react-inspector](https://github.com/xyc/react-inspector/blob/master/src/styles/themes/chromeLight.js) which has themes of it's own. If you want to theme it (our themes do) you can add needs the following additional theme variables:
|
Addon actions uses [react-inspector](https://github.com/xyc/react-inspector/blob/master/src/styles/themes/chromeLight.js) which has themes of it's own. If you want to theme it (our themes do) you can add needs the following additional theme variables:
|
||||||
|
@ -1769,14 +1769,6 @@ exports[`Storyshots Core|Events Force re-render 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-0:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-0:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-0 > span {
|
.emotion-0 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -1855,14 +1847,6 @@ exports[`Storyshots Core|Events Force re-render 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-0:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-0:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-0 > span {
|
.emotion-0 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -3035,6 +3019,7 @@ exports[`Storyshots UI|Settings/ShortcutsScreen default shortcuts 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
||||||
display: inline;
|
display: inline;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -3059,14 +3044,6 @@ exports[`Storyshots UI|Settings/ShortcutsScreen default shortcuts 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-88:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-88:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-88 > span {
|
.emotion-88 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -3549,6 +3526,7 @@ exports[`Storyshots UI|Settings/ShortcutsScreen default shortcuts 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
||||||
display: inline;
|
display: inline;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -3573,14 +3551,6 @@ exports[`Storyshots UI|Settings/ShortcutsScreen default shortcuts 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-88:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-88:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-88 > span {
|
.emotion-88 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -4582,14 +4552,6 @@ exports[`Storyshots UI|Sidebar/Sidebar loading 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 > span {
|
.emotion-5 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -4636,14 +4598,6 @@ exports[`Storyshots UI|Sidebar/Sidebar loading 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-8 {
|
.emotion-8 {
|
||||||
display: block;
|
display: block;
|
||||||
width: 0;
|
width: 0;
|
||||||
@ -5033,14 +4987,6 @@ exports[`Storyshots UI|Sidebar/Sidebar loading 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 > span {
|
.emotion-5 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -5087,14 +5033,6 @@ exports[`Storyshots UI|Sidebar/Sidebar loading 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-8 {
|
.emotion-8 {
|
||||||
display: block;
|
display: block;
|
||||||
width: 0;
|
width: 0;
|
||||||
@ -5878,14 +5816,6 @@ exports[`Storyshots UI|Sidebar/Sidebar simple 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 > span {
|
.emotion-5 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -5932,14 +5862,6 @@ exports[`Storyshots UI|Sidebar/Sidebar simple 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-14 {
|
.emotion-14 {
|
||||||
-webkit-transition: all 150ms ease-out;
|
-webkit-transition: all 150ms ease-out;
|
||||||
transition: all 150ms ease-out;
|
transition: all 150ms ease-out;
|
||||||
@ -6450,14 +6372,6 @@ exports[`Storyshots UI|Sidebar/Sidebar simple 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 > span {
|
.emotion-5 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -6504,14 +6418,6 @@ exports[`Storyshots UI|Sidebar/Sidebar simple 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-14 {
|
.emotion-14 {
|
||||||
-webkit-transition: all 150ms ease-out;
|
-webkit-transition: all 150ms ease-out;
|
||||||
transition: all 150ms ease-out;
|
transition: all 150ms ease-out;
|
||||||
@ -7253,14 +7159,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading customBrand 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-3:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-3:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-3 > span {
|
.emotion-3 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -7307,14 +7205,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading customBrand 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-3:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-3:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 {
|
.emotion-5 {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
@ -7409,14 +7299,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading customBrand 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-3:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-3:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-3 > span {
|
.emotion-3 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -7463,14 +7345,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading customBrand 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-3:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-3:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 {
|
.emotion-5 {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
@ -7639,14 +7513,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading menuHighlighted 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 > span {
|
.emotion-5 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -7693,14 +7559,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading menuHighlighted 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:after {
|
.emotion-5:after {
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -7836,14 +7694,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading menuHighlighted 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 > span {
|
.emotion-5 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -7890,14 +7740,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading menuHighlighted 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:after {
|
.emotion-5:after {
|
||||||
content: "";
|
content: "";
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -8093,14 +7935,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading simple 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 > span {
|
.emotion-5 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -8147,14 +7981,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading simple 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-7 {
|
.emotion-7 {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
@ -8279,14 +8105,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading simple 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5 > span {
|
.emotion-5 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -8333,14 +8151,6 @@ exports[`Storyshots UI|Sidebar/SidebarHeading simple 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-5:focus {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-5:focus:hover {
|
|
||||||
box-shadow: #DDDDDD 0 0 0 1px inset,rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-7 {
|
.emotion-7 {
|
||||||
display: -webkit-box;
|
display: -webkit-box;
|
||||||
display: -webkit-flex;
|
display: -webkit-flex;
|
||||||
|
@ -46,6 +46,7 @@ exports[`Storyshots Basics|Form/Button sizes 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
||||||
display: inline;
|
display: inline;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -70,14 +71,6 @@ exports[`Storyshots Basics|Form/Button sizes 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-0:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-0:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-0 > span {
|
.emotion-0 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -177,6 +170,7 @@ exports[`Storyshots Basics|Form/Button sizes 1`] = `
|
|||||||
-webkit-flex: 1;
|
-webkit-flex: 1;
|
||||||
-ms-flex: 1;
|
-ms-flex: 1;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -201,14 +195,6 @@ exports[`Storyshots Basics|Form/Button sizes 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-2:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-2:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-2 > span {
|
.emotion-2 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -299,6 +285,7 @@ exports[`Storyshots Basics|Form/Button sizes 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -323,14 +310,6 @@ exports[`Storyshots Basics|Form/Button sizes 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-4:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-4:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-4 > span {
|
.emotion-4 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -470,6 +449,7 @@ exports[`Storyshots Basics|Form/Button validations 1`] = `
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -494,14 +474,6 @@ exports[`Storyshots Basics|Form/Button validations 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-6:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-6:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-6 > span {
|
.emotion-6 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -593,6 +565,7 @@ exports[`Storyshots Basics|Form/Button validations 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-shadow: #FF4400 0 0 0 1px inset !important;
|
box-shadow: #FF4400 0 0 0 1px inset !important;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -617,14 +590,6 @@ exports[`Storyshots Basics|Form/Button validations 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-0:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-0:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-0 > span {
|
.emotion-0 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -716,6 +681,7 @@ exports[`Storyshots Basics|Form/Button validations 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-shadow: #E69D00 0 0 0 1px inset;
|
box-shadow: #E69D00 0 0 0 1px inset;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -740,14 +706,6 @@ exports[`Storyshots Basics|Form/Button validations 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-2:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-2:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-2 > span {
|
.emotion-2 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
@ -839,6 +797,7 @@ exports[`Storyshots Basics|Form/Button validations 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
box-shadow: rgba(0,0,0,.1) 0 0 0 1px inset;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-shadow: #66BF3C 0 0 0 1px inset !important;
|
box-shadow: #66BF3C 0 0 0 1px inset !important;
|
||||||
|
border-radius: 4px;
|
||||||
-webkit-user-select: none;
|
-webkit-user-select: none;
|
||||||
-moz-user-select: none;
|
-moz-user-select: none;
|
||||||
-ms-user-select: none;
|
-ms-user-select: none;
|
||||||
@ -863,14 +822,6 @@ exports[`Storyshots Basics|Form/Button validations 1`] = `
|
|||||||
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
box-shadow: rgba(0,0,0,.2) 0 2px 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.emotion-4:focus {
|
|
||||||
box-shadow: rgba(30,167,253,0.4) 0 1px 9px 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-4:focus:hover {
|
|
||||||
box-shadow: rgba(30,167,253,0.2) 0 8px 18px 0px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.emotion-4 > span {
|
.emotion-4 > span {
|
||||||
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-webkit-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
-ms-transform: scale3d(1,1,1) translate3d(0,0,0);
|
||||||
|
@ -112,15 +112,20 @@ export const Textarea = styled(TextareaAutoResize)(styles, sizes, alignment, val
|
|||||||
Textarea.displayName = 'Textarea';
|
Textarea.displayName = 'Textarea';
|
||||||
|
|
||||||
export const Button = withProps({ tertiary: true, small: true, inForm: true })(
|
export const Button = withProps({ tertiary: true, small: true, inForm: true })(
|
||||||
styled(StyledButton)(sizes, validation, ({ theme }) => ({ borderRadius: theme.borderRadius }), {
|
styled(StyledButton)(
|
||||||
userSelect: 'none',
|
sizes,
|
||||||
overflow: 'visible',
|
validation,
|
||||||
zIndex: 2,
|
({ theme }) => ({ borderRadius: theme.appBorderRadius }),
|
||||||
|
{
|
||||||
|
userSelect: 'none',
|
||||||
|
overflow: 'visible',
|
||||||
|
zIndex: 2,
|
||||||
|
|
||||||
// overrides the default hover from Button
|
// overrides the default hover from Button
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
transform: 'none',
|
transform: 'none',
|
||||||
},
|
},
|
||||||
})
|
}
|
||||||
|
)
|
||||||
);
|
);
|
||||||
Button.displayName = 'Button';
|
Button.displayName = 'Button';
|
||||||
|
@ -1,20 +1,19 @@
|
|||||||
export { StorybookLogo } from './brand/StorybookLogo';
|
|
||||||
export { StorybookIcon } from './brand/StorybookIcon';
|
|
||||||
export { default as Badge } from './Badge/Badge';
|
export { default as Badge } from './Badge/Badge';
|
||||||
export { default as Button } from './Button/Button';
|
|
||||||
|
|
||||||
|
// Typography
|
||||||
export { default as Link } from './typography/link/link';
|
export { default as Link } from './typography/link/link';
|
||||||
export { default as DocumentFormatting } from './typography/DocumentFormatting';
|
export { default as DocumentFormatting } from './typography/DocumentFormatting';
|
||||||
|
|
||||||
export { Spaced } from './spaced/Spaced';
|
|
||||||
|
|
||||||
export { default as Form } from './form/index';
|
|
||||||
|
|
||||||
export SyntaxHighlighter from './syntaxhighlighter/syntaxhighlighter';
|
export SyntaxHighlighter from './syntaxhighlighter/syntaxhighlighter';
|
||||||
|
// UI
|
||||||
export { ActionBar } from './ActionBar/ActionBar';
|
export { ActionBar } from './ActionBar/ActionBar';
|
||||||
|
export { Spaced } from './spaced/Spaced';
|
||||||
export { Placeholder } from './placeholder/placeholder';
|
export { Placeholder } from './placeholder/placeholder';
|
||||||
|
|
||||||
|
// Forms
|
||||||
|
export { default as Button } from './Button/Button';
|
||||||
|
export { default as Form } from './form/index';
|
||||||
|
|
||||||
|
// Tooltips
|
||||||
export { default as WithTooltip } from './tooltip/WithTooltip';
|
export { default as WithTooltip } from './tooltip/WithTooltip';
|
||||||
export { default as TooltipMessage } from './tooltip/TooltipMessage';
|
export { default as TooltipMessage } from './tooltip/TooltipMessage';
|
||||||
export { default as TooltipNote } from './tooltip/TooltipNote';
|
export { default as TooltipNote } from './tooltip/TooltipNote';
|
||||||
@ -26,4 +25,7 @@ export { IconButton, TabButton } from './bar/button';
|
|||||||
export { Separator, interleaveSeparators } from './bar/separator';
|
export { Separator, interleaveSeparators } from './bar/separator';
|
||||||
export { Bar, FlexBar } from './bar/bar';
|
export { Bar, FlexBar } from './bar/bar';
|
||||||
|
|
||||||
|
// Graphics
|
||||||
export { default as Icons } from './icon/icon';
|
export { default as Icons } from './icon/icon';
|
||||||
|
export { StorybookLogo } from './brand/StorybookLogo';
|
||||||
|
export { StorybookIcon } from './brand/StorybookIcon';
|
||||||
|
@ -95,7 +95,7 @@ export const createGlobal = memoize(1)(
|
|||||||
...resetStyles,
|
...resetStyles,
|
||||||
body: {
|
body: {
|
||||||
...resetStyles.body,
|
...resetStyles.body,
|
||||||
color: color.darkest,
|
color: color.defaultText,
|
||||||
background: background.app,
|
background: background.app,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -6,8 +6,6 @@ export default create({
|
|||||||
// Storybook-specific color palette
|
// Storybook-specific color palette
|
||||||
colorPrimary: '#FF4785', // coral
|
colorPrimary: '#FF4785', // coral
|
||||||
colorSecondary: '#1EA7FD', // ocean
|
colorSecondary: '#1EA7FD', // ocean
|
||||||
colorTertiary: '#FAFBFC', // neutral buttons
|
|
||||||
colorAncillary: '#22a699', // for code
|
|
||||||
|
|
||||||
// UI
|
// UI
|
||||||
appBg: background.app,
|
appBg: background.app,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user