This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

CoordinatingScheme Pennington.MonorailCss

Selects accent hues relative to the primary hue.

Fields

Analogous CoordinatingScheme
Default: 3
Two accents at -30° and +30°.
Complementary CoordinatingScheme
Default: 0
Single accent at +180°.
SplitComplementary CoordinatingScheme
Default: 1
Two accents at +150° and +210°.
Triadic CoordinatingScheme
Default: 2
Two accents at +120° and +240°.

Pennington.MonorailCss.CoordinatingScheme

namespace Pennington.MonorailCss;

/// Selects accent hues relative to the primary hue.
public enum CoordinatingScheme
{
    /// Two accents at -30° and +30°.
    
public static const CoordinatingScheme Analogous
; /// Single accent at +180°.
public static const CoordinatingScheme Complementary
; /// Two accents at +150° and +210°.
public static const CoordinatingScheme SplitComplementary
; /// Two accents at +120° and +240°.
public static const CoordinatingScheme Triadic
; }