You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
design: white stock, a true red, and hyperref's palette on tags
The cream ground and the burgundy sat close enough in value that the page
read soft. Take the stock to near-white (#FCFCFA), the ink to #1A1A1A, and
the accent from burgundy to an actual red (#C5221F, 5.8:1) so links carry
the way coloured links carry in a paper.
Introduce three more accents named after hyperref's own link roles — url
blue, cite green, note amber, each over 4.5:1 on the new stock. Tag chips
cycle through all four and the citation markers in Publications set in
mono and in the cite colour, the way \cite renders under colorlinks. That
is where the green, blue, and yellow live; the red stays the site's voice.
Colours cycle with a chip's position, not a hash of its name. Hashing was
the first attempt and it clumped — one post came out green, blue, green,
green. Position guarantees an even run, and since tags are listed in the
same order everywhere, a tag still keeps its colour across views.
The share card, the favicon's inner diamond, the theme-color meta, and the
manifest follow the same palette.
Claude-Session: https://claude.ai/code/session_01S3mVZMgbynFxc2N874K9nH
Copy file name to clipboardExpand all lines: src/pages/index.astro
+24-5Lines changed: 24 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -109,11 +109,27 @@ const SKILLS = [
109
109
},
110
110
];
111
111
112
+
// The reference marker is split out so it can set in mono and in the citation
113
+
// colour, the way a paper's \cite renders under hyperref.
112
114
const PUBLICATIONS = [
113
-
'[1] D.S. Anaya Mancilla et al. "VCF/Plotein: visualization and prioritization of genomic variants from VCF files." <em>Bioinformatics</em>, Oxford Academic, 2019.',
114
-
'[2] D.S. Anaya Mancilla et al. "ADR-47: The Case Against PACT xUSD Launch." xBacked DAO, 2022.',
'D.S. Anaya Mancilla et al. "VCF/Plotein: visualization and prioritization of genomic variants from VCF files." <em>Bioinformatics</em>, Oxford Academic, 2019.',
119
+
},
120
+
{
121
+
ref: '[2]',
122
+
citation:
123
+
'D.S. Anaya Mancilla et al. "ADR-47: The Case Against PACT xUSD Launch." xBacked DAO, 2022.',
0 commit comments