diff --git a/src/App.vue b/src/App.vue index 34047d7..8e86943 100644 --- a/src/App.vue +++ b/src/App.vue @@ -31,7 +31,7 @@ color: var(--color-secondary); } .sub { - color: #4f7099; + color: #7ea6cd; font-size: 11px; letter-spacing: 0.04em; } diff --git a/src/components/BlueprintViewer.vue b/src/components/BlueprintViewer.vue index d7961b4..74f455e 100644 --- a/src/components/BlueprintViewer.vue +++ b/src/components/BlueprintViewer.vue @@ -104,7 +104,7 @@ const funcCount = computed(() => props.blueprint.functions.length)
+
The standard composition and its {{ funcCount }} functions. Select a function above to focus it.
@@ -208,7 +208,7 @@ code { padding: 8px 12px; } .tb-k { - color: #4f7099; + color: #7ea6cd; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; @@ -364,7 +364,7 @@ code { background: rgba(255, 255, 255, 0.02); } .panel .cap .id { - color: #4f7099; + color: #7ea6cd; } .panel .body { padding: 16px; @@ -384,7 +384,7 @@ code { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; - color: color-mix(in srgb, var(--color-base-content) 50%, transparent); + color: color-mix(in srgb, var(--color-base-content) 75%, transparent); margin-bottom: 0.35rem; } .rk .rule { @@ -425,7 +425,7 @@ code { color: var(--color-secondary); } .sig-note { - color: #4f7099; + color: #7ea6cd; } .sig-types { margin-top: 8px; @@ -459,7 +459,7 @@ code { margin-top: 34px; padding-top: 14px; border-top: 1px solid rgba(200, 226, 255, 0.14); - color: #4f7099; + color: #7ea6cd; font-size: 11px; line-height: 1.8; } diff --git a/src/components/CompositionMap.vue b/src/components/CompositionMap.vue index 05444aa..528fe65 100644 --- a/src/components/CompositionMap.vue +++ b/src/components/CompositionMap.vue @@ -8,7 +8,8 @@ const PAL = { boxFill: "#103763", boxStroke: "#3d5f85", ink: "#dbe9f7", - inkFaint: "#4f7099", + inkFaint: "#4f7099", // decorative edges only + inkDim: "#7ea6cd", // dim text — meets WCAG AA on navy paper cyan: "#8fd0ff", amber: "#ffb84d", } @@ -94,7 +95,7 @@ const edges = computed(() => stroke-width="1.5" />{{ fn.verb }}
+{{ fn.verb }}
— {{ n }}
+— {{ n }}
@@ -100,7 +100,7 @@ defineProps<{ fn: BlueprintFunction }>() font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; - color: color-mix(in srgb, var(--color-base-content) 50%, transparent); + color: color-mix(in srgb, var(--color-base-content) 75%, transparent); margin-bottom: 0.35rem; } .k .rule { diff --git a/src/specimens/CalendarSpecimen.vue b/src/specimens/CalendarSpecimen.vue index 3b33e2a..d24df7c 100644 --- a/src/specimens/CalendarSpecimen.vue +++ b/src/specimens/CalendarSpecimen.vue @@ -261,7 +261,8 @@ function barStyle(e: MonthEvent) {