@@ -38,6 +38,7 @@ import globalStyles from '../../utils/global_styles'
38
38
*/
39
39
40
40
// ${selection({ backgroundColor: 'tomato' }, '*') };
41
+
41
42
const Container = styled . div `
42
43
*::-moz-selection {
43
44
background-color:${ theme ( 'selection_bg' ) } ;
@@ -46,6 +47,43 @@ const Container = styled.div`
46
47
*::selection {
47
48
background-color:${ theme ( 'selection_bg' ) } ;
48
49
}
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
+ }
49
87
`
50
88
const ThemeObserver = ( { children, theme} ) => (
51
89
< ThemeProvider theme = { theme . themeData } >