File tree Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Expand file tree Collapse file tree 3 files changed +23
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
2
2
import styled from 'styled-components' ;
3
3
import { prop , remSize } from '../../theme' ;
4
4
5
- const background = prop ( 'Button .default.background' ) ;
5
+ const background = prop ( 'Panel .default.background' ) ;
6
6
const textColor = prop ( 'primaryTextColor' ) ;
7
7
8
8
const Footer = styled . div `
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import React from 'react';
2
2
import styled from 'styled-components' ;
3
3
import { prop , remSize } from '../../theme' ;
4
4
5
- const background = prop ( 'Button .default.background' ) ;
5
+ const background = prop ( 'Panel .default.background' ) ;
6
6
const textColor = prop ( 'primaryTextColor' ) ;
7
7
8
8
const Header = styled . div `
Original file line number Diff line number Diff line change @@ -88,6 +88,13 @@ export default {
88
88
Icon : {
89
89
default : grays . middleGray ,
90
90
hover : grays . darker
91
+ } ,
92
+ Panel : {
93
+ default : {
94
+ foreground : colors . black ,
95
+ background : grays . light ,
96
+ border : grays . middleLight ,
97
+ } ,
91
98
}
92
99
} ,
93
100
[ Theme . dark ] : {
@@ -120,6 +127,13 @@ export default {
120
127
Icon : {
121
128
default : grays . middleLight ,
122
129
hover : grays . lightest
130
+ } ,
131
+ Panel : {
132
+ default : {
133
+ foreground : grays . light ,
134
+ background : grays . dark ,
135
+ border : grays . middleDark ,
136
+ } ,
123
137
}
124
138
} ,
125
139
[ Theme . contrast ] : {
@@ -152,6 +166,13 @@ export default {
152
166
Icon : {
153
167
default : grays . mediumLight ,
154
168
hover : colors . yellow
169
+ } ,
170
+ Panel : {
171
+ default : {
172
+ foreground : grays . light ,
173
+ background : grays . dark ,
174
+ border : grays . middleDark ,
175
+ } ,
155
176
}
156
177
} ,
157
178
} ;
You can’t perform that action at this time.
0 commit comments