mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2026-01-22 08:14:07 +03:00
* react-base16-styling * Use inline react-base16-styling themes * Fix * Format * Fix * Fixes * Transform more * react-json-tree * Update lock * Remove unnecessary * react-dock * Move to dep * Lock * Fix * Fix * Create tame-eagles-relax.md
11 lines
365 B
TypeScript
11 lines
365 B
TypeScript
import type { Base16Theme } from 'react-base16-styling';
|
|
|
|
export default (colors: Base16Theme) => ({
|
|
fontFamily: "'Roboto', sans-serif",
|
|
codeFontFamily: "'Roboto Mono', monospace",
|
|
inputPadding: 5,
|
|
inputBorderRadius: 0,
|
|
inputBorderColor: `transparent transparent ${colors.base02}`,
|
|
inputFocusedStyle: `box-shadow: inset 0 -2px 0 ${colors.base0D};`,
|
|
});
|