File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed
playground/.vuepress/styles Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ export default {
170
170
div [data-ds-theme = "dark" ]
171
171
.meilisearch-autocomplete
172
172
.dsb-dropdown-menu [class^ = dsb-dataset- ], .docs-searchbar-suggestion
173
- background lighten ( $bgDarkColor , 10 % )
173
+ background $msDropdownBgDarkColor
174
174
175
175
// Searchbox
176
176
input
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ $msAccentDarkColor
131
131
$msInputDarkBgColor
132
132
$msTextDarkColor
133
133
$borderDarkColor
134
+ $msDropdownBgDarkColor
134
135
```
135
136
136
137
You can also find an example in our [ playground's ` palette.styl ` file] ( ./playground/.vuepress/styles/palette.styl )
Original file line number Diff line number Diff line change @@ -5,4 +5,4 @@ $msInputDarkBgColor = #444d52
5
5
6
6
$msTextDarkColor = #ea ea ea
7
7
8
- $borderDarkColor = lighten ($msInputDarkBgColor , 10% )
8
+ $msBorderDarkColor = lighten ($msInputDarkBgColor , 10% )
Original file line number Diff line number Diff line change @@ -5,4 +5,6 @@ $msInputDarkBgColor ?= #444d52
5
5
6
6
$msTextDarkColor ?= #ea ea ea
7
7
8
- $msBorderDarkColor ?= lighten ($msInputDarkBgColor , 10% )
8
+ $msBorderDarkColor ?= lighten ($msInputDarkBgColor , 10% )
9
+
10
+ $msDropdownBgDarkColor ?= darken ($msInputDarkBgColor , 25% )
You can’t perform that action at this time.
0 commit comments