github.com/pf-qiu/concourse/v6@v6.7.3-0.20201207032516-1f455d73275f/web/wats/helpers/palette.js (about)

     1  'use strict';
     2  
     3  let color = require('color');
     4  
     5  module.exports = {
     6    "grey100": color("#151515"),
     7    "grey90": color("#262626"),
     8    "grey80": color("#363636"),
     9    "grey70": color("#4D4D4D"),
    10    "grey50": color("#808080"),
    11  
    12    "white": color("#FFFFFF"),
    13  
    14    "green": color("#11C560"),
    15    "green2": color("#419867"),
    16    "amber": color("#F5A623"),
    17    "amber2": color("#D58808"),
    18    "red": color("#ED4B35"),
    19    "red2": color("#BD3826"),
    20    "blue": color("#4A90E2"),
    21    "blue2": color("#2D76CC"),
    22    "brown": color("#8B572A"),
    23    "brown2": color("#6A401C"),
    24    "grey": color("#9B9B9B"),
    25    "grey2": color("#7A7373"),
    26    "yellow": color("#F1C40F"),
    27  }