Skip to content

Colors

Coloring of Health data:

Yanzi Lifecycle and Insights utilize colour schemes in various places in order to indicate desirable intervals for values. In addition, these colours give users an ability to compare values at a glance.

The values for the desirable ranges are loosely based on the guidance set forth by SWEDVAC (2006) but has been modified to accomodate for the requirements of the modern office.

The currently employed ranges are as follows:

Temperature (K)

Text Only
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
{
    colors: [
      { index: 0.0, rgb: [164, 0, 255, 1] },
      { index: 0.5, rgb: [0, 36, 255, 1] },
      { index: 0.772, rgb: [35, 201, 231, 1] },
      { index: 0.814, rgb: [0, 255, 0, 1] },
      { index: 0.843, rgb: [255, 204, 0, 1] },
      { index: 1.0, rgb: [255, 0, 0, 1] },
    ],
    min: 238.15,
    max: 308.15,
}

Humidity %RH

Text Only
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
{
    colors: [
      { index: 0.0, rgb: [255, 0, 255, 1] },
      { index: 0.4, rgb: [255, 204, 0, 1] },
      { index: 0.5, rgb: [0, 255, 0, 1] },
      { index: 0.6, rgb: [35, 201, 231, 1] },
      { index: 1.0, rgb: [0, 0, 255, 1] },
    ],
    min: 0,
    max: 1
}

CO_2 (ppm)

Text Only
1
2
3
4
5
6
7
8
9
{
    colors: [
      { index: 0, rgb: [0, 255, 0, 1] },
      { index: 0.8, rgb: [255, 204, 0, 1] },
      { index: 1, rgb: [255, 0, 0, 1] },
    ],
    min: 0,
    max: 1000
}

VOC (ppb)

Text Only
1
2
3
4
5
6
7
8
9
{
    colors: [
      { index: 0.0, rgb: [0, 255, 0, 1] },
      { index: 0.4, rgb: [0, 255, 0, 1] },
      { index: 1.0, rgb: [255, 0, 0, 1] },
    ],
    min: 300,
    max: 1000
}

Sound (DbA)

Text Only
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
{
    colors: [
      { index: 0.0, rgb: [0, 255, 0, 1] },
      { index: 0.4, rgb: [0, 255, 0, 1] },
      { index: 0.6, rgb: [255, 204, 0, 1] },
      { index: 0.8, rgb: [255, 0, 0, 1] },
      { index: 1.0, rgb: [255, 0, 0, 1] },
    ],
    min: 0,
    max: 80
}