Skip to content

Commit b4c0ca1

Browse files
authored
Merge branch 'master' into bs5darkfixes2
2 parents 527880d + 0a6ae3e commit b4c0ca1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

libs/remix-ui/editor/src/lib/remix-ui-editor.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
}
2222

2323
.inline-class {
24-
background: var(--info) !important;
25-
color: var(--white) !important;
24+
background: var(--bs-info) !important;
25+
color: var(--bs-white) !important;
2626
filter: opacity(0.5);
2727
font-weight: bolder;
2828
}
@@ -32,15 +32,15 @@ div.monaco-list-row > span.title {
3232
}
3333

3434
.modifiedChangesDecoration {
35-
background-color: var(--danger) !important;
35+
background-color: var(--bs-danger) !important;
3636
color: var(--white) !important;
3737
filter: opacity(0.1);
3838
font-weight: bolder;
3939
}
4040

4141
.newChangesDecoration {
4242
background-color: var(--custom-ai-color) !important;
43-
color: var(--white) !important;
43+
color: var(--bs-white) !important;
4444
filter: opacity(0.1);
4545
font-weight: bolder;
4646
}

libs/remix-ui/editor/src/lib/remix-ui-editor.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,10 @@ export const EditorUI = (props: EditorUIProps) => {
215215
const lightColor = formatColor('--bs-light')
216216
const infoColor = formatColor('--bs-info')
217217
const darkColor = formatColor('--bs-dark')
218-
const secondaryColor = formatColor('--bs-secondary')
218+
const secondaryColor = formatColor('--bs-body-bg')
219219
const primaryColor = formatColor('--bs-primary')
220220
const textColor = formatColor('--text') || darkColor
221-
const textbackground = formatColor('--text-background') || lightColor
221+
const textbackground = formatColor('--bs-body-bg') || lightColor
222222
const blueColor = formatColor('--bs-blue')
223223
const successColor = formatColor('--bs-success')
224224
const warningColor = formatColor('--bs-warning')

0 commit comments

Comments
 (0)