@@ -38,6 +38,7 @@ import globalStyles from '../../utils/global_styles'
3838 */
3939
4040// ${selection({ backgroundColor: 'tomato' }, '*') };
41+
4142const Container = styled . div `
4243 *::-moz-selection {
4344 background-color: ${ theme ( 'selection_bg' ) } ;
@@ -46,6 +47,43 @@ const Container = styled.div`
4647 *::selection {
4748 background-color: ${ theme ( 'selection_bg' ) } ;
4849 }
50+
51+ .ant-btn-background-ghost.ant-btn-primary {
52+ color: ${ theme ( 'button.primary' ) } ;
53+ border-color: ${ theme ( 'button.primary' ) } ;
54+ }
55+
56+ .ant-btn:focus,
57+ .ant-btn:hover {
58+ background-color: ${ theme ( 'button.hoverBg' ) } ;
59+ }
60+ .ant-btn:active {
61+ background-color: ${ theme ( 'button.activeBg' ) } ;
62+ }
63+
64+ .ant-btn-primary {
65+ color: ${ theme ( 'button.fg' ) } ;
66+ background-color: ${ theme ( 'button.primary' ) } ;
67+ border-color: ${ theme ( 'button.primary' ) } ;
68+ }
69+
70+ .ant-btn-clicked:after {
71+ border: ${ theme ( 'button.clicked' ) } ;
72+ }
73+
74+ .ant-tabs-bar {
75+ border-bottom: ${ theme ( 'taber.baseline' ) } ;
76+ }
77+ .ant-tabs-ink-bar {
78+ background-color: ${ theme ( 'taber.bottom_bar' ) } ;
79+ }
80+ .ant-tabs-nav .ant-tabs-tab {
81+ color: ${ theme ( 'taber.normalText' ) } ;
82+ }
83+ .ant-tabs-nav .ant-tabs-tab-active {
84+ color: ${ theme ( 'taber.activeText' ) } ;
85+ font-weight: bold;
86+ }
4987`
5088const ThemeObserver = ( { children, theme } ) => (
5189 < ThemeProvider theme = { theme . themeData } >
0 commit comments