Skip to content

Commit

Permalink
style(editor): improve background gradient readability
Browse files Browse the repository at this point in the history
Adjust background gradient in editor.css for better readability.
  • Loading branch information
phodal committed Sep 23, 2024
1 parent f6fdd22 commit 7d5a027
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion web/core/lib/editor/editor.css
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,20 @@
}

.b3-color-bg-red {
background-image: linear-gradient(74deg, rgb(66, 133, 244) 0px, rgb(155, 114, 203) 9%, rgb(217, 101, 112) 20%, rgb(217, 101, 112) 24%, rgb(155, 114, 203) 35%, rgb(66, 133, 244) 44%, rgb(155, 114, 203) 50%, rgb(217, 101, 112) 56%, rgb(19, 19, 20) 75%, rgb(19, 19, 20) 100%)
background-image: linear-gradient(
74deg,
rgb(66, 133, 244) 0px,
rgb(155, 114, 203) 9%,
rgb(217, 101, 112) 20%,
rgb(217, 101, 112) 24%,
rgb(155, 114, 203) 35%,
rgb(66, 133, 244) 44%,
rgb(155, 114, 203) 50%,
rgb(217, 101, 112) 56%,
rgb(19, 19, 20) 75%,
rgb(19, 19, 20) 100%
);
background-size: 400% 100%;
}

.b3-color-purple {
Expand Down

0 comments on commit 7d5a027

Please sign in to comment.