diff --git a/.storybook/public/index.css b/.storybook/public/index.css index 12c2ab80e32b..8ace4b240684 100644 --- a/.storybook/public/index.css +++ b/.storybook/public/index.css @@ -1,24 +1,28 @@ .search-field *, .sidebar-item, .search-result-item--label { - color: #fff !important; + color: #E7ECE9 !important; } .sidebar-subheading *, .search-result-item { - color: #fff; + color: #E7ECE9; } a.sidebar-item > svg { color: #03d47c; } +a.sidebar-item[data-selected="true"], a.sidebar-item[data-selected="true"]:focus, a.sidebar-item[data-selected="true"]:hover { + background: #1A3D32; +} + .search-result-item--label span { - color: #ffffffaa !important; + color: #E7ECE9aa !important; } #panel-tab-content :is(input:checked ~ span:last-of-type, input:not(:checked) ~ span:first-of-type) { - background: #ff7101; - color: #fff; + background: #03D47C; + color: #E7ECE9; } .sidebar-container { - background: #0b1b34; + background: #07271f; } diff --git a/.storybook/public/logo.png b/.storybook/public/logo.png index f956ed3d2264..23c909e83f0b 100644 Binary files a/.storybook/public/logo.png and b/.storybook/public/logo.png differ diff --git a/.storybook/public/logomark.svg b/.storybook/public/logomark.svg index 095f92d9ec26..d1ca5ca84d06 100644 --- a/.storybook/public/logomark.svg +++ b/.storybook/public/logomark.svg @@ -1,15 +1,25 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + diff --git a/.storybook/theme.js b/.storybook/theme.js index e33243058453..0867f6a830b5 100644 --- a/.storybook/theme.js +++ b/.storybook/theme.js @@ -2,14 +2,22 @@ import {create} from '@storybook/theming'; import colors from '../src/styles/colors'; export default create({ - appBg: colors.dark, - barSelectedColor: colors.blue, - base: 'light', - brandTitle: 'Expensify UI Docs', + brandTitle: 'New Expensify UI Docs', brandImage: 'logomark.svg', - colorPrimary: colors.dark, - colorSecondary: colors.orange, fontBase: 'ExpensifyNeue-Regular', fontCode: 'monospace', - textInverseColor: colors.black, + base: 'dark', + appBg: colors.greenHighlightBackground, + colorPrimary: colors.greenDefaultButton, + colorSecondary: colors.green, + appContentBg: colors.greenAppBackground, + textColor: colors.white, + barTextColor: colors.white, + barSelectedColor: colors.green, + barBg: colors.greenAppBackground, + appBorderColor: colors.greenBorders, + inputBg: colors.greenHighlightBackground, + inputBorder: colors.greenBorders, + appBorderRadius: 8, + inputBorderRadius: 8, });