Skip to content

Commit 6ccd5ce

Browse files
edmundmillerclaude
andcommitted
style: Set lineMarkerLabelColor to bright green for text markers
- Add lineMarkerLabelColor: #0dc09d to textMarkers config - Ensures label styling uses the site's bright green color - Improves visibility and consistency with design system 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent efbf1fb commit 6ccd5ce

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

ec.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ export default defineEcConfig({
3939
// Make highlighting more visible but still clean
4040
backgroundOpacity: "0.4", // More visible highlighting
4141
borderOpacity: "0", // No border opacity
42+
43+
// Make text more readable on light green background
44+
markForeground: "#1f2937", // Dark text for better contrast
45+
46+
// Label styling with bright green background
47+
lineMarkerLabelColor: "#0dc09d", // Bright green for labels
4248
},
4349

4450
// Frames - clean, minimal styling

src/pages/examples/basic-pipeline/_main.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ process reverse {
3535
workflow {
3636

3737
splitSequences(params.in)
38+
3839
| reverse
3940
| view
4041
}

0 commit comments

Comments
 (0)