blob: 5c0e12c18beb55239b1568b169b601601002995f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
@import "@opencode-ai/ui/styles/tailwind";
[data-component="prompt-mode-toggle"] [data-slot="icon-svg"] {
color: var(--icon-base);
}
[data-component="prompt-mode-toggle"] [data-slot="icon-svg"] * {
color: inherit;
}
[data-component="prompt-mode-toggle"] button[aria-pressed="true"] [data-slot="icon-svg"] {
color: var(--icon-strong-base);
}
[data-component="prompt-mode-toggle"] [data-slot="icon-svg"] [stroke]:not([stroke="none"]) {
stroke: currentColor;
}
[data-component="prompt-mode-toggle"] [data-slot="icon-svg"] [fill]:not([fill="none"]) {
fill: currentColor;
}
|