Skip to content

Commit

Permalink
Merge pull request #6 from fsegurai/development
Browse files Browse the repository at this point in the history
upg/1.1.15 - fix/material-dark selection styles
  • Loading branch information
fsegurai committed Apr 30, 2024
2 parents 9aeefee + 4098faf commit 96977f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"workspaces": [
"packages/*"
],
"version": "1.1.14",
"version": "1.1.15",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/material-dark/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fsegurai/codemirror-theme-material-dark",
"description": "Material Dark theme for the CodeMirror code editor",
"version": "6.0.3",
"version": "6.0.4",
"type": "module",
"main": "dist/index.cjs",
"exports": {
Expand Down
6 changes: 3 additions & 3 deletions packages/material-dark/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const invalid = base_red,
highlightBackground = '#545b61',
background = base00,
tooltipBackground = base01,
selection = '#707880',
selection = '#600000',
selectionMatch = '#4A707A ',
cursor = base04

Expand Down Expand Up @@ -83,8 +83,8 @@ export const materialDarkTheme = EditorView.theme(
},

'.cm-activeLineGutter': {
backgroundColor: highlightBackground,
color: base07
backgroundColor: selection,
color: '#FFFFFF'
},

'.cm-foldPlaceholder': {
Expand Down

0 comments on commit 96977f2

Please sign in to comment.