File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const TagItem: React.FC<TagItemProps> = ({ name, link }) => {
19
19
20
20
const tagStyle = css `
21
21
margin-bottom: 0.875rem;
22
- background: ${ themedPalette . bg_element3 } ;
22
+ background: ${ themedPalette . bg_tag } ;
23
23
padding-left: 1rem;
24
24
padding-right: 1rem;
25
25
height: 2rem;
@@ -49,7 +49,7 @@ const TagDiv = styled.div`
49
49
const TagLink = styled ( Link ) `
50
50
${ tagStyle }
51
51
&:hover {
52
- background: ${ themedPalette . bg_element4 } ;
52
+ opacity: 0.75 ;
53
53
}
54
54
` ;
55
55
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ type ThemeVariables = {
11
11
bg_element8 : string ;
12
12
bg_invert : string ;
13
13
bg_inline_code : string ;
14
+ bg_tag : string ;
14
15
text1 : string ;
15
16
text2 : string ;
16
17
text3 : string ;
@@ -63,6 +64,8 @@ const themeVariableSets: Record<Theme, ThemeVariables> = {
63
64
bg_element8 : '#FBFDFC' ,
64
65
bg_invert : '#1E1E1E' ,
65
66
bg_inline_code : '#E9ECEF' ,
67
+ bg_tag : '#F8F9FA' ,
68
+
66
69
text1 : '#212529' ,
67
70
text2 : '#495057' ,
68
71
text3 : '#868E96' ,
@@ -109,6 +112,7 @@ const themeVariableSets: Record<Theme, ThemeVariables> = {
109
112
bg_element8 : '#0c0c0c' ,
110
113
bg_invert : '#FFFFFF' ,
111
114
bg_inline_code : '#363636' ,
115
+ bg_tag : '#252525' ,
112
116
text1 : '#ECECEC' ,
113
117
text2 : '#D9D9D9' ,
114
118
text3 : '#ACACAC' ,
You can’t perform that action at this time.
0 commit comments