SLC default color aliases

Nico Chart_21517
Nico Chart_21517
Altair Employee
edited October 15 in Altair RapidMiner

SLC has a set of default colour aliases that may be different from other SAS language compiler systems.

This example shows how to make the table backgrounds white:

proc template;
  define style styles.custom;
  parent=styles.rtf;
    replace wps_colors /
        'gblockDefault'=#B4CCE5    'gtextlinesDefault'=#0066CC
        'gblock1'=#CF6C33      'gtextlines1'=#7A3D1E
        'gblock2'=#5FB7D4    'gtextlines2'=#339999
        'gblock3'=#3EC051    'gtextlines3'=#009933
        'gblock4'=#ADD23F    'gtextlines4'=#669900
        'gblock5'=#F8CB41    'gtextlines5'=#CC9900
        'gblock6'=#FF9900    'gtextlines6'=#CC6600
        'gblock7'=#F64D4D    'gtextlines7'=#CC0000
        'gblock8'=#E6769F    'gtextlines8'=#CC3366
        'gblock9'=#C758D0    'gtextlines9'=#993399
        'gblock10'=#8399EB    'gtextlines10'=#6666CC
        'gblock11'=#007ED6    'gtextlines11'=#0066CC
        'gblock12'=#969696    'gtextlines12'=#646464
        'ggridlines'=#E6E6E6
        'gminorgridlines'=#E6E6E6
        /* doc */
        'docbg'=V00000FF    'docfg'=V0000000
        'headbg'=V00000FF    'headfg'=V0000000
        /* table/batch */
        'blockbg'=V00000FF    'blockfg'=V0000000
        'theadbg'=V00000FF    'theadfg'=V0000000
        'tborder'=#B0B0B0
        /* titles etc */
        'bylinebg'=V0D20CFF    'bylinefg'=V0000000
        ;
  end;
run;

 

Tagged: