I have a list of colors from my workplace that we should use for all the graphs I create. Ideally I would just use these colors to create a new scheme and set it as default. I have created a scheme file that contains the following (modified from http://www.statsml.com/making-a-colo...hs-in-stata/):

Code:
#include s2color
 
*color heading "122 26 23" // Title color
*color background "246 226 180" // Background color
 
// Colors for the bars-- a modification from s2color
color p1bar      "11 78 67"
color p2bar      "159 127 80"
color p3bar      "205 48 40"
color p4bar      "37 64 143"
color p5bar      "130 130 127"
color p6bar      "167 200 151"
color p7bar      "205 120 40"
color p8bar      "252 206 189"
color p9bar      "135 202 208"
color p10bar      "221 220 211"
 
// outlines for the bars:
// assign same color as the bars to have no outline
 
color p1       "11 78 67"
color p2       "159 127 80"
color p3       "205 48 40"
color p4       "37 64 143"
color p5       "130 130 127"
color p6       "167 200 151"
color p7       "205 120 40"
color p8       "252 206 189"
color p9       "135 202 208"
color p10       "221 220 211"
I've saved this as scheme-newscheme.scheme in multiple path names including C:\ado but it does not get added to my list of available schemes when I type:

Code:
graph query, schemes
I can create a palette for the colors:

Code:
program colorpalette_newpalette
c_local P #0b4e43,#9f7f51,#cd3028,#25408f,#82827f,#a7c897,#c d7828,#fccebd,#87cad0,#dddcd3
end
but don't know how to make those colors default for graphs. I've tried running brewscheme but multiple layers of errors occur, which others have posted about without resolution.

It seems to me that setting default graph colors should be quite straightforward but I'm having a lot of trouble sorting this out.