Techniques
Wax-reserved double line
The signature pysanka edge: a crisp reserved-white hairline with a second, fainter line offset outside it, like two passes of the kistka dividing color fields.
.element {
border: 1px solid rgba(243, 236, 220, 0.85);
outline: 1px solid rgba(243, 236, 220, 0.25);
outline-offset: 4px;
background: #141A5E;
border-radius: 12px;
}
Ruzha eight-point star medallion
A radial sun-star built from two rotated squares of conic gradient — the ruzha motif — used as a hero medallion or section marker on the indigo ground.
.element {
width: 160px;
height: 160px;
border-radius: 9999px;
background:
conic-gradient(
from 22.5deg,
#C9971C 0deg 45deg, transparent 45deg 90deg,
#B22222 90deg 135deg, transparent 135deg 180deg,
#C9971C 180deg 225deg, transparent 225deg 270deg,
#B22222 270deg 315deg, transparent 315deg 360deg
),
radial-gradient(circle at center, #F3ECDC 0 18%, transparent 18%),
#0F1235;
border: 1px solid rgba(243, 236, 220, 0.85);
box-shadow: 0 0 0 6px #1A237E, 0 0 0 7px rgba(243, 236, 220, 0.4);
}
Wheat-band register divider
A horizontal ornamental band between sections: repeating diagonal red-and-gold strokes fenced by reserved-white hairlines, the wheat-sheaf harvest register.
.element {
height: 14px;
border-top: 1px solid rgba(243, 236, 220, 0.85);
border-bottom: 1px solid rgba(243, 236, 220, 0.85);
background: repeating-linear-gradient(
-55deg,
#C9971C 0 4px,
#0F1235 4px 8px,
#B22222 8px 12px,
#0F1235 12px 16px
);
}