stockor 0.3.0 → 0.4.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (142) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/.rubocop.yml +15 -0
  4. data/Gemfile +3 -1
  5. data/Gemfile.lock +97 -193
  6. data/client/skr/Extension.coffee +8 -4
  7. data/client/skr/api.js +21 -0
  8. data/client/skr/api.scss +148 -0
  9. data/client/skr/api/Components/AddressForm.cjsx +47 -0
  10. data/client/skr/api/Components/Base.coffee +7 -0
  11. data/client/skr/api/Components/SaleHistory.cjsx +32 -0
  12. data/client/skr/api/Components/SingleItemCart.cjsx +30 -0
  13. data/client/skr/api/Models/Base.coffee +10 -0
  14. data/client/skr/api/Models/Cart.coffee +40 -0
  15. data/client/skr/api/Models/Sale.coffee +43 -0
  16. data/client/skr/api/Models/SalesHistory.coffee +17 -0
  17. data/client/skr/api/Models/Sku.coffee +16 -0
  18. data/client/skr/api/SingleItemCheckout.cjsx +99 -0
  19. data/client/skr/api/namespace.js +6 -0
  20. data/client/skr/api/onReady.coffee +23 -0
  21. data/client/skr/components/CreditCardForm.cjsx +35 -0
  22. data/client/skr/components/CustomerFinder.cjsx +0 -3
  23. data/client/skr/components/InvoiceFinder.cjsx +1 -0
  24. data/client/skr/components/LatexSnippets.cjsx +65 -0
  25. data/client/skr/components/LocationChooser.cjsx +5 -1
  26. data/client/skr/components/PrintButton.cjsx +33 -0
  27. data/client/skr/components/PrintFormChooser.cjsx +10 -10
  28. data/client/skr/components/SalesOrderFinder.cjsx +2 -1
  29. data/client/skr/components/SystemSettings.cjsx +69 -9
  30. data/client/skr/components/address/index.js +1 -0
  31. data/client/skr/models/Address.coffee +3 -0
  32. data/client/skr/models/CreditCard.coffee +49 -0
  33. data/client/skr/models/CreditCardGateway.coffee +27 -0
  34. data/client/skr/models/Invoice.coffee +13 -5
  35. data/client/skr/models/Location.coffee +6 -4
  36. data/client/skr/models/Payment.coffee +33 -13
  37. data/client/skr/models/SalesOrder.coffee +7 -3
  38. data/client/skr/models/SequentialId.coffee +17 -0
  39. data/client/skr/models/Sku.coffee +1 -1
  40. data/client/skr/models/TimeEntry.coffee +3 -4
  41. data/client/skr/models/mixins/PrintSupport.coffee +4 -1
  42. data/client/skr/models/mixins/SkuLine.coffee +1 -1
  43. data/client/skr/screens/customer-maint/CustomerMaint.cjsx +1 -2
  44. data/client/skr/screens/customer-projects/CustomerProjects.cjsx +7 -3
  45. data/client/skr/screens/customer-projects/index.scss +1 -0
  46. data/client/skr/screens/fresh-books-import/ApiInfo.cjsx +1 -1
  47. data/client/skr/screens/gl-accounts/GlAccounts.cjsx +1 -1
  48. data/client/skr/screens/gl-transactions/GlTransactions.cjsx +1 -1
  49. data/client/skr/screens/invoice/Invoice.cjsx +9 -17
  50. data/client/skr/screens/invoice/Payment.cjsx +94 -13
  51. data/client/skr/screens/invoice/index.scss +32 -0
  52. data/client/skr/screens/locations/Locations.cjsx +3 -2
  53. data/client/skr/screens/payment-category/PaymentCategory.cjsx +1 -1
  54. data/client/skr/screens/payments/Payments.cjsx +5 -4
  55. data/client/skr/screens/sale-report/SaleReport.cjsx +73 -0
  56. data/client/skr/screens/sale-report/index.js +5 -0
  57. data/client/skr/screens/sale-report/index.scss +9 -0
  58. data/client/skr/screens/sales-order/SalesOrder.cjsx +4 -4
  59. data/client/skr/screens/sku-maint/SkuMaint.cjsx +5 -0
  60. data/client/skr/screens/sku-maint/SkuUomList.cjsx +45 -56
  61. data/client/skr/screens/sku-maint/index.scss +33 -13
  62. data/client/skr/screens/time-invoicing/TimeInvoicing.cjsx +2 -2
  63. data/client/skr/screens/time-tracking/EditEntry.cjsx +2 -4
  64. data/client/skr/screens/time-tracking/TimeTracking.cjsx +1 -1
  65. data/client/skr/screens/vendor-maint/VendorMaint.cjsx +1 -1
  66. data/client/skr/vendor/index.js +2438 -0
  67. data/config/lanes.rb +10 -3
  68. data/config/routes.rb +9 -7
  69. data/config/screens.rb +39 -13
  70. data/db/migrate/20160517032350_create_remove_location_logos.rb +11 -0
  71. data/db/migrate/20160531014306_create_public_skus.rb +7 -0
  72. data/db/migrate/20160604195848_create_null_addresses.rb +9 -0
  73. data/db/migrate/20160605024432_create_sku_associations_views.rb +48 -0
  74. data/db/migrate/20160608023553_create_invoice_payments.rb +9 -0
  75. data/db/migrate/20160620010455_add_payments_to_inv_details.rb +54 -0
  76. data/db/schema.sql +206 -38
  77. data/db/seed.rb +6 -0
  78. data/lib/skr.rb +1 -1
  79. data/lib/skr/access_roles.rb +6 -1
  80. data/lib/skr/concerns/has_gl_transaction.rb +8 -0
  81. data/lib/skr/concerns/inv_extensions.rb +11 -0
  82. data/lib/skr/concerns/is_order_like.rb +3 -3
  83. data/lib/skr/concerns/visible_id_identifier.rb +3 -8
  84. data/lib/skr/configuration.rb +2 -0
  85. data/lib/skr/extension.rb +6 -0
  86. data/lib/skr/handlers/credit_card_gateway.rb +31 -0
  87. data/lib/skr/handlers/invoice_from_time_entries.rb +12 -26
  88. data/lib/skr/handlers/sales.rb +44 -0
  89. data/lib/skr/handlers/sequential_ids.rb +46 -0
  90. data/lib/skr/handlers/skus.rb +36 -0
  91. data/lib/skr/jobs/fresh_books/import.rb +3 -1
  92. data/lib/skr/merchant_gateway.rb +37 -0
  93. data/lib/skr/models/address.rb +7 -5
  94. data/lib/skr/models/bank_account.rb +12 -0
  95. data/lib/skr/models/business_entity.rb +1 -1
  96. data/lib/skr/models/gl_transaction.rb +3 -0
  97. data/lib/skr/models/inv_line.rb +7 -2
  98. data/lib/skr/models/inventory_adjustment.rb +0 -5
  99. data/lib/skr/models/invoice.rb +25 -36
  100. data/lib/skr/models/location.rb +1 -1
  101. data/lib/skr/models/payment.rb +56 -10
  102. data/lib/skr/models/po_receipt.rb +0 -8
  103. data/lib/skr/models/sales_order.rb +7 -2
  104. data/lib/skr/models/sequential_id.rb +6 -1
  105. data/lib/skr/models/sku.rb +3 -0
  106. data/lib/skr/print.rb +1 -0
  107. data/lib/skr/print/context.rb +19 -0
  108. data/lib/skr/print/form.rb +7 -1
  109. data/lib/skr/version.rb +1 -1
  110. data/npm-build/package.json +26 -0
  111. data/npm-build/vendor.js +10 -0
  112. data/npm-build/webpack.config.js +25 -0
  113. data/spec/fixtures/skr/bank_account.yml +9 -0
  114. data/spec/fixtures/skr/customer.yml +10 -0
  115. data/spec/fixtures/skr/inv_line.yml +12 -0
  116. data/spec/fixtures/skr/invoice.yml +17 -0
  117. data/spec/fixtures/skr/payment_category.yml +6 -0
  118. data/spec/fixtures/skr/sales_order.yml +1 -1
  119. data/spec/fixtures/skr/sku.yml +10 -0
  120. data/spec/fixtures/skr/sku_loc.yml +4 -0
  121. data/spec/fixtures/skr/uom.yml +6 -0
  122. data/spec/server/handlers/invoice_from_time_entries_spec.rb +13 -6
  123. data/spec/server/handlers/sequential_ids_spec.rb +22 -0
  124. data/spec/server/models/invoice_spec.rb +36 -0
  125. data/spec/server/models/payment_spec.rb +50 -22
  126. data/spec/server/models/sales_order_spec.rb +12 -0
  127. data/spec/server/print/form_spec.rb +20 -4
  128. data/spec/skr/api/SingleItemCheckoutSpec.cjsx +10 -0
  129. data/spec/skr/screens/sale-report/SaleReportSpec.coffee +5 -0
  130. data/stockor.gemspec +5 -4
  131. data/templates/print/layout.tex.erb +1 -1
  132. data/templates/print/packages/INSTALL +7 -0
  133. data/templates/print/packages/qrcode.sty +3051 -0
  134. data/templates/print/packages/svgnam.def +186 -0
  135. data/templates/print/packages/x11nam.def +352 -0
  136. data/templates/print/packages/xcolor.pro +58 -0
  137. data/templates/print/packages/xcolor.sty +1460 -0
  138. data/templates/print/types/invoice/default.tex.erb +2 -0
  139. data/templates/print/types/invoice/labor.tex.erb +2 -1
  140. data/templates/print/types/invoice/ticket.tex.erb +41 -0
  141. data/templates/print/types/payment/default.tex.erb +13 -12
  142. metadata +78 -12
@@ -0,0 +1,186 @@
1
+ %%
2
+ %% This is file `svgnam.def',
3
+ %% generated with the docstrip utility.
4
+ %%
5
+ %% The original source files were:
6
+ %%
7
+ %% xcolor.dtx (with options: `svgnames')
8
+ %%
9
+ %% IMPORTANT NOTICE:
10
+ %%
11
+ %% For the copyright see the source file.
12
+ %%
13
+ %% Any modified versions of this file must be renamed
14
+ %% with new filenames distinct from svgnam.def.
15
+ %%
16
+ %% For distribution of the original source see the terms
17
+ %% for copying and modification in the file xcolor.dtx.
18
+ %%
19
+ %% This generated file may be distributed as long as the
20
+ %% original source files, as listed above, are part of the
21
+ %% same distribution. (The sources need not necessarily be
22
+ %% in the same archive or directory.)
23
+ %%
24
+ \ProvidesFile{svgnam.def}
25
+ [2016/05/11 v2.12 Predefined colors according to SVG 1.1 (UK)]
26
+ %%
27
+ %% ----------------------------------------------------------------
28
+ %% Copyright (C) 2003-2016 by Dr. Uwe Kern <xcolor at ukern dot de>
29
+ %% ----------------------------------------------------------------
30
+ %%
31
+ \def\colornameprefix{XC@}
32
+ \preparecolorset{rgb}{}{}{%
33
+ AliceBlue,.94,.972,1;%
34
+ AntiqueWhite,.98,.92,.844;%
35
+ Aqua,0,1,1;%
36
+ Aquamarine,.498,1,.83;%
37
+ Azure,.94,1,1;%
38
+ Beige,.96,.96,.864;%
39
+ Bisque,1,.894,.77;%
40
+ Black,0,0,0;%
41
+ BlanchedAlmond,1,.92,.804;%
42
+ Blue,0,0,1;%
43
+ BlueViolet,.54,.17,.888;%
44
+ Brown,.648,.165,.165;%
45
+ BurlyWood,.87,.72,.53;%
46
+ CadetBlue,.372,.62,.628;%
47
+ Chartreuse,.498,1,0;%
48
+ Chocolate,.824,.41,.116;%
49
+ Coral,1,.498,.312;%
50
+ CornflowerBlue,.392,.585,.93;%
51
+ Cornsilk,1,.972,.864;%
52
+ Crimson,.864,.08,.235;%
53
+ Cyan,0,1,1;%
54
+ DarkBlue,0,0,.545;%
55
+ DarkCyan,0,.545,.545;%
56
+ DarkGoldenrod,.72,.525,.044;%
57
+ DarkGray,.664,.664,.664;%
58
+ DarkGreen,0,.392,0;%
59
+ DarkGrey,.664,.664,.664;%
60
+ DarkKhaki,.74,.716,.42;%
61
+ DarkMagenta,.545,0,.545;%
62
+ DarkOliveGreen,.332,.42,.185;%
63
+ DarkOrange,1,.55,0;%
64
+ DarkOrchid,.6,.196,.8;%
65
+ DarkRed,.545,0,0;%
66
+ DarkSalmon,.912,.59,.48;%
67
+ DarkSeaGreen,.56,.736,.56;%
68
+ DarkSlateBlue,.284,.24,.545;%
69
+ DarkSlateGray,.185,.31,.31;%
70
+ DarkSlateGrey,.185,.31,.31;%
71
+ DarkTurquoise,0,.808,.82;%
72
+ DarkViolet,.58,0,.828;%
73
+ DeepPink,1,.08,.576;%
74
+ DeepSkyBlue,0,.75,1;%
75
+ DimGray,.41,.41,.41;%
76
+ DimGrey,.41,.41,.41;%
77
+ DodgerBlue,.116,.565,1;%
78
+ FireBrick,.698,.132,.132;%
79
+ FloralWhite,1,.98,.94;%
80
+ ForestGreen,.132,.545,.132;%
81
+ Fuchsia,1,0,1;%
82
+ Gainsboro,.864,.864,.864;%
83
+ GhostWhite,.972,.972,1;%
84
+ Gold,1,.844,0;%
85
+ Goldenrod,.855,.648,.125;%
86
+ Gray,.5,.5,.5;%
87
+ Green,0,.5,0;%
88
+ GreenYellow,.68,1,.185;%
89
+ Grey,.5,.5,.5;%
90
+ Honeydew,.94,1,.94;%
91
+ HotPink,1,.41,.705;%
92
+ IndianRed,.804,.36,.36;%
93
+ Indigo,.294,0,.51;%
94
+ Ivory,1,1,.94;%
95
+ Khaki,.94,.9,.55;%
96
+ Lavender,.9,.9,.98;%
97
+ LavenderBlush,1,.94,.96;%
98
+ LawnGreen,.488,.99,0;%
99
+ LemonChiffon,1,.98,.804;%
100
+ LightBlue,.68,.848,.9;%
101
+ LightCoral,.94,.5,.5;%
102
+ LightCyan,.88,1,1;%
103
+ LightGoldenrod,.933,.867,.51;%
104
+ LightGoldenrodYellow,.98,.98,.824;%
105
+ LightGray,.828,.828,.828;%
106
+ LightGreen,.565,.932,.565;%
107
+ LightGrey,.828,.828,.828;%
108
+ LightPink,1,.712,.756;%
109
+ LightSalmon,1,.628,.48;%
110
+ LightSeaGreen,.125,.698,.668;%
111
+ LightSkyBlue,.53,.808,.98;%
112
+ LightSlateBlue,.518,.44,1;%
113
+ LightSlateGray,.468,.532,.6;%
114
+ LightSlateGrey,.468,.532,.6;%
115
+ LightSteelBlue,.69,.77,.87;%
116
+ LightYellow,1,1,.88;%
117
+ Lime,0,1,0;%
118
+ LimeGreen,.196,.804,.196;%
119
+ Linen,.98,.94,.9;%
120
+ Magenta,1,0,1;%
121
+ Maroon,.5,0,0;%
122
+ MediumAquamarine,.4,.804,.668;%
123
+ MediumBlue,0,0,.804;%
124
+ MediumOrchid,.73,.332,.828;%
125
+ MediumPurple,.576,.44,.86;%
126
+ MediumSeaGreen,.235,.7,.444;%
127
+ MediumSlateBlue,.484,.408,.932;%
128
+ MediumSpringGreen,0,.98,.604;%
129
+ MediumTurquoise,.284,.82,.8;%
130
+ MediumVioletRed,.78,.084,.52;%
131
+ MidnightBlue,.098,.098,.44;%
132
+ MintCream,.96,1,.98;%
133
+ MistyRose,1,.894,.884;%
134
+ Moccasin,1,.894,.71;%
135
+ NavajoWhite,1,.87,.68;%
136
+ Navy,0,0,.5;%
137
+ NavyBlue,0,0,.5;%
138
+ OldLace,.992,.96,.9;%
139
+ Olive,.5,.5,0;%
140
+ OliveDrab,.42,.556,.136;%
141
+ Orange,1,.648,0;%
142
+ OrangeRed,1,.27,0;%
143
+ Orchid,.855,.44,.84;%
144
+ PaleGoldenrod,.932,.91,.668;%
145
+ PaleGreen,.596,.985,.596;%
146
+ PaleTurquoise,.688,.932,.932;%
147
+ PaleVioletRed,.86,.44,.576;%
148
+ PapayaWhip,1,.936,.835;%
149
+ PeachPuff,1,.855,.725;%
150
+ Peru,.804,.52,.248;%
151
+ Pink,1,.752,.796;%
152
+ Plum,.868,.628,.868;%
153
+ PowderBlue,.69,.88,.9;%
154
+ Purple,.5,0,.5;%
155
+ Red,1,0,0;%
156
+ RosyBrown,.736,.56,.56;%
157
+ RoyalBlue,.255,.41,.884;%
158
+ SaddleBrown,.545,.27,.075;%
159
+ Salmon,.98,.5,.448;%
160
+ SandyBrown,.956,.644,.376;%
161
+ SeaGreen,.18,.545,.34;%
162
+ Seashell,1,.96,.932;%
163
+ Sienna,.628,.32,.176;%
164
+ Silver,.752,.752,.752;%
165
+ SkyBlue,.53,.808,.92;%
166
+ SlateBlue,.415,.352,.804;%
167
+ SlateGray,.44,.5,.565;%
168
+ SlateGrey,.44,.5,.565;%
169
+ Snow,1,.98,.98;%
170
+ SpringGreen,0,1,.498;%
171
+ SteelBlue,.275,.51,.705;%
172
+ Tan,.824,.705,.55;%
173
+ Teal,0,.5,.5;%
174
+ Thistle,.848,.75,.848;%
175
+ Tomato,1,.39,.28;%
176
+ Turquoise,.25,.88,.815;%
177
+ Violet,.932,.51,.932;%
178
+ VioletRed,.816,.125,.565;%
179
+ Wheat,.96,.87,.7;%
180
+ White,1,1,1;%
181
+ WhiteSmoke,.96,.96,.96;%
182
+ Yellow,1,1,0;%
183
+ YellowGreen,.604,.804,.196}
184
+ \endinput
185
+ %%
186
+ %% End of file `svgnam.def'.
@@ -0,0 +1,352 @@
1
+ %%
2
+ %% This is file `x11nam.def',
3
+ %% generated with the docstrip utility.
4
+ %%
5
+ %% The original source files were:
6
+ %%
7
+ %% xcolor.dtx (with options: `x11names')
8
+ %%
9
+ %% IMPORTANT NOTICE:
10
+ %%
11
+ %% For the copyright see the source file.
12
+ %%
13
+ %% Any modified versions of this file must be renamed
14
+ %% with new filenames distinct from x11nam.def.
15
+ %%
16
+ %% For distribution of the original source see the terms
17
+ %% for copying and modification in the file xcolor.dtx.
18
+ %%
19
+ %% This generated file may be distributed as long as the
20
+ %% original source files, as listed above, are part of the
21
+ %% same distribution. (The sources need not necessarily be
22
+ %% in the same archive or directory.)
23
+ %%
24
+ \ProvidesFile{x11nam.def}
25
+ [2016/05/11 v2.12 Predefined colors according to Unix/X11 (UK)]
26
+ %%
27
+ %% ----------------------------------------------------------------
28
+ %% Copyright (C) 2003-2016 by Dr. Uwe Kern <xcolor at ukern dot de>
29
+ %% ----------------------------------------------------------------
30
+ %%
31
+ \def\colornameprefix{XC@}
32
+ \preparecolorset{rgb}{}{}{%
33
+ AntiqueWhite1,1,.936,.86;%
34
+ AntiqueWhite2,.932,.875,.8;%
35
+ AntiqueWhite3,.804,.752,.69;%
36
+ AntiqueWhite4,.545,.512,.47;%
37
+ Aquamarine1,.498,1,.83;%
38
+ Aquamarine2,.464,.932,.776;%
39
+ Aquamarine3,.4,.804,.668;%
40
+ Aquamarine4,.27,.545,.455;%
41
+ Azure1,.94,1,1;%
42
+ Azure2,.88,.932,.932;%
43
+ Azure3,.756,.804,.804;%
44
+ Azure4,.512,.545,.545;%
45
+ Bisque1,1,.894,.77;%
46
+ Bisque2,.932,.835,.716;%
47
+ Bisque3,.804,.716,.62;%
48
+ Bisque4,.545,.49,.42;%
49
+ Blue1,0,0,1;%
50
+ Blue2,0,0,.932;%
51
+ Blue3,0,0,.804;%
52
+ Blue4,0,0,.545;%
53
+ Brown1,1,.25,.25;%
54
+ Brown2,.932,.23,.23;%
55
+ Brown3,.804,.2,.2;%
56
+ Brown4,.545,.136,.136;%
57
+ Burlywood1,1,.828,.608;%
58
+ Burlywood2,.932,.772,.57;%
59
+ Burlywood3,.804,.668,.49;%
60
+ Burlywood4,.545,.45,.332;%
61
+ CadetBlue1,.596,.96,1;%
62
+ CadetBlue2,.556,.898,.932;%
63
+ CadetBlue3,.48,.772,.804;%
64
+ CadetBlue4,.325,.525,.545;%
65
+ Chartreuse1,.498,1,0;%
66
+ Chartreuse2,.464,.932,0;%
67
+ Chartreuse3,.4,.804,0;%
68
+ Chartreuse4,.27,.545,0;%
69
+ Chocolate1,1,.498,.14;%
70
+ Chocolate2,.932,.464,.13;%
71
+ Chocolate3,.804,.4,.112;%
72
+ Chocolate4,.545,.27,.075;%
73
+ Coral1,1,.448,.336;%
74
+ Coral2,.932,.415,.312;%
75
+ Coral3,.804,.356,.27;%
76
+ Coral4,.545,.244,.185;%
77
+ Cornsilk1,1,.972,.864;%
78
+ Cornsilk2,.932,.91,.804;%
79
+ Cornsilk3,.804,.785,.694;%
80
+ Cornsilk4,.545,.532,.47;%
81
+ Cyan1,0,1,1;%
82
+ Cyan2,0,.932,.932;%
83
+ Cyan3,0,.804,.804;%
84
+ Cyan4,0,.545,.545;%
85
+ DarkGoldenrod1,1,.725,.06;%
86
+ DarkGoldenrod2,.932,.68,.055;%
87
+ DarkGoldenrod3,.804,.585,.048;%
88
+ DarkGoldenrod4,.545,.396,.03;%
89
+ DarkOliveGreen1,.792,1,.44;%
90
+ DarkOliveGreen2,.736,.932,.408;%
91
+ DarkOliveGreen3,.635,.804,.352;%
92
+ DarkOliveGreen4,.43,.545,.24;%
93
+ DarkOrange1,1,.498,0;%
94
+ DarkOrange2,.932,.464,0;%
95
+ DarkOrange3,.804,.4,0;%
96
+ DarkOrange4,.545,.27,0;%
97
+ DarkOrchid1,.75,.244,1;%
98
+ DarkOrchid2,.698,.228,.932;%
99
+ DarkOrchid3,.604,.196,.804;%
100
+ DarkOrchid4,.408,.132,.545;%
101
+ DarkSeaGreen1,.756,1,.756;%
102
+ DarkSeaGreen2,.705,.932,.705;%
103
+ DarkSeaGreen3,.608,.804,.608;%
104
+ DarkSeaGreen4,.41,.545,.41;%
105
+ DarkSlateGray1,.592,1,1;%
106
+ DarkSlateGray2,.552,.932,.932;%
107
+ DarkSlateGray3,.475,.804,.804;%
108
+ DarkSlateGray4,.32,.545,.545;%
109
+ DeepPink1,1,.08,.576;%
110
+ DeepPink2,.932,.07,.536;%
111
+ DeepPink3,.804,.064,.464;%
112
+ DeepPink4,.545,.04,.312;%
113
+ DeepSkyBlue1,0,.75,1;%
114
+ DeepSkyBlue2,0,.698,.932;%
115
+ DeepSkyBlue3,0,.604,.804;%
116
+ DeepSkyBlue4,0,.408,.545;%
117
+ DodgerBlue1,.116,.565,1;%
118
+ DodgerBlue2,.11,.525,.932;%
119
+ DodgerBlue3,.094,.455,.804;%
120
+ DodgerBlue4,.064,.305,.545;%
121
+ Firebrick1,1,.19,.19;%
122
+ Firebrick2,.932,.172,.172;%
123
+ Firebrick3,.804,.15,.15;%
124
+ Firebrick4,.545,.1,.1;%
125
+ Gold1,1,.844,0;%
126
+ Gold2,.932,.79,0;%
127
+ Gold3,.804,.68,0;%
128
+ Gold4,.545,.46,0;%
129
+ Goldenrod1,1,.756,.145;%
130
+ Goldenrod2,.932,.705,.132;%
131
+ Goldenrod3,.804,.608,.112;%
132
+ Goldenrod4,.545,.41,.08;%
133
+ Green1,0,1,0;%
134
+ Green2,0,.932,0;%
135
+ Green3,0,.804,0;%
136
+ Green4,0,.545,0;%
137
+ Honeydew1,.94,1,.94;%
138
+ Honeydew2,.88,.932,.88;%
139
+ Honeydew3,.756,.804,.756;%
140
+ Honeydew4,.512,.545,.512;%
141
+ HotPink1,1,.43,.705;%
142
+ HotPink2,.932,.415,.655;%
143
+ HotPink3,.804,.376,.565;%
144
+ HotPink4,.545,.228,.385;%
145
+ IndianRed1,1,.415,.415;%
146
+ IndianRed2,.932,.39,.39;%
147
+ IndianRed3,.804,.332,.332;%
148
+ IndianRed4,.545,.228,.228;%
149
+ Ivory1,1,1,.94;%
150
+ Ivory2,.932,.932,.88;%
151
+ Ivory3,.804,.804,.756;%
152
+ Ivory4,.545,.545,.512;%
153
+ Khaki1,1,.965,.56;%
154
+ Khaki2,.932,.9,.52;%
155
+ Khaki3,.804,.776,.45;%
156
+ Khaki4,.545,.525,.305;%
157
+ LavenderBlush1,1,.94,.96;%
158
+ LavenderBlush2,.932,.88,.898;%
159
+ LavenderBlush3,.804,.756,.772;%
160
+ LavenderBlush4,.545,.512,.525;%
161
+ LemonChiffon1,1,.98,.804;%
162
+ LemonChiffon2,.932,.912,.75;%
163
+ LemonChiffon3,.804,.79,.648;%
164
+ LemonChiffon4,.545,.536,.44;%
165
+ LightBlue1,.75,.936,1;%
166
+ LightBlue2,.698,.875,.932;%
167
+ LightBlue3,.604,.752,.804;%
168
+ LightBlue4,.408,.512,.545;%
169
+ LightCyan1,.88,1,1;%
170
+ LightCyan2,.82,.932,.932;%
171
+ LightCyan3,.705,.804,.804;%
172
+ LightCyan4,.48,.545,.545;%
173
+ LightGoldenrod1,1,.925,.545;%
174
+ LightGoldenrod2,.932,.864,.51;%
175
+ LightGoldenrod3,.804,.745,.44;%
176
+ LightGoldenrod4,.545,.505,.298;%
177
+ LightPink1,1,.684,.725;%
178
+ LightPink2,.932,.635,.68;%
179
+ LightPink3,.804,.55,.585;%
180
+ LightPink4,.545,.372,.396;%
181
+ LightSalmon1,1,.628,.48;%
182
+ LightSalmon2,.932,.585,.448;%
183
+ LightSalmon3,.804,.505,.385;%
184
+ LightSalmon4,.545,.34,.26;%
185
+ LightSkyBlue1,.69,.888,1;%
186
+ LightSkyBlue2,.644,.828,.932;%
187
+ LightSkyBlue3,.552,.712,.804;%
188
+ LightSkyBlue4,.376,.484,.545;%
189
+ LightSteelBlue1,.792,.884,1;%
190
+ LightSteelBlue2,.736,.824,.932;%
191
+ LightSteelBlue3,.635,.71,.804;%
192
+ LightSteelBlue4,.43,.484,.545;%
193
+ LightYellow1,1,1,.88;%
194
+ LightYellow2,.932,.932,.82;%
195
+ LightYellow3,.804,.804,.705;%
196
+ LightYellow4,.545,.545,.48;%
197
+ Magenta1,1,0,1;%
198
+ Magenta2,.932,0,.932;%
199
+ Magenta3,.804,0,.804;%
200
+ Magenta4,.545,0,.545;%
201
+ Maroon1,1,.204,.7;%
202
+ Maroon2,.932,.19,.655;%
203
+ Maroon3,.804,.16,.565;%
204
+ Maroon4,.545,.11,.385;%
205
+ MediumOrchid1,.88,.4,1;%
206
+ MediumOrchid2,.82,.372,.932;%
207
+ MediumOrchid3,.705,.32,.804;%
208
+ MediumOrchid4,.48,.215,.545;%
209
+ MediumPurple1,.67,.51,1;%
210
+ MediumPurple2,.624,.475,.932;%
211
+ MediumPurple3,.536,.408,.804;%
212
+ MediumPurple4,.365,.28,.545;%
213
+ MistyRose1,1,.894,.884;%
214
+ MistyRose2,.932,.835,.824;%
215
+ MistyRose3,.804,.716,.71;%
216
+ MistyRose4,.545,.49,.484;%
217
+ NavajoWhite1,1,.87,.68;%
218
+ NavajoWhite2,.932,.81,.63;%
219
+ NavajoWhite3,.804,.7,.545;%
220
+ NavajoWhite4,.545,.475,.37;%
221
+ OliveDrab1,.752,1,.244;%
222
+ OliveDrab2,.7,.932,.228;%
223
+ OliveDrab3,.604,.804,.196;%
224
+ OliveDrab4,.41,.545,.132;%
225
+ Orange1,1,.648,0;%
226
+ Orange2,.932,.604,0;%
227
+ Orange3,.804,.52,0;%
228
+ Orange4,.545,.352,0;%
229
+ OrangeRed1,1,.27,0;%
230
+ OrangeRed2,.932,.25,0;%
231
+ OrangeRed3,.804,.215,0;%
232
+ OrangeRed4,.545,.145,0;%
233
+ Orchid1,1,.512,.98;%
234
+ Orchid2,.932,.48,.912;%
235
+ Orchid3,.804,.41,.79;%
236
+ Orchid4,.545,.28,.536;%
237
+ PaleGreen1,.604,1,.604;%
238
+ PaleGreen2,.565,.932,.565;%
239
+ PaleGreen3,.488,.804,.488;%
240
+ PaleGreen4,.33,.545,.33;%
241
+ PaleTurquoise1,.732,1,1;%
242
+ PaleTurquoise2,.684,.932,.932;%
243
+ PaleTurquoise3,.59,.804,.804;%
244
+ PaleTurquoise4,.4,.545,.545;%
245
+ PaleVioletRed1,1,.51,.67;%
246
+ PaleVioletRed2,.932,.475,.624;%
247
+ PaleVioletRed3,.804,.408,.536;%
248
+ PaleVioletRed4,.545,.28,.365;%
249
+ PeachPuff1,1,.855,.725;%
250
+ PeachPuff2,.932,.796,.68;%
251
+ PeachPuff3,.804,.688,.585;%
252
+ PeachPuff4,.545,.468,.396;%
253
+ Pink1,1,.71,.772;%
254
+ Pink2,.932,.664,.72;%
255
+ Pink3,.804,.57,.62;%
256
+ Pink4,.545,.39,.424;%
257
+ Plum1,1,.732,1;%
258
+ Plum2,.932,.684,.932;%
259
+ Plum3,.804,.59,.804;%
260
+ Plum4,.545,.4,.545;%
261
+ Purple1,.608,.19,1;%
262
+ Purple2,.57,.172,.932;%
263
+ Purple3,.49,.15,.804;%
264
+ Purple4,.332,.1,.545;%
265
+ Red1,1,0,0;%
266
+ Red2,.932,0,0;%
267
+ Red3,.804,0,0;%
268
+ Red4,.545,0,0;%
269
+ RosyBrown1,1,.756,.756;%
270
+ RosyBrown2,.932,.705,.705;%
271
+ RosyBrown3,.804,.608,.608;%
272
+ RosyBrown4,.545,.41,.41;%
273
+ RoyalBlue1,.284,.464,1;%
274
+ RoyalBlue2,.264,.43,.932;%
275
+ RoyalBlue3,.228,.372,.804;%
276
+ RoyalBlue4,.152,.25,.545;%
277
+ Salmon1,1,.55,.41;%
278
+ Salmon2,.932,.51,.385;%
279
+ Salmon3,.804,.44,.33;%
280
+ Salmon4,.545,.298,.224;%
281
+ SeaGreen1,.33,1,.624;%
282
+ SeaGreen2,.305,.932,.58;%
283
+ SeaGreen3,.264,.804,.5;%
284
+ SeaGreen4,.18,.545,.34;%
285
+ Seashell1,1,.96,.932;%
286
+ Seashell2,.932,.898,.87;%
287
+ Seashell3,.804,.772,.75;%
288
+ Seashell4,.545,.525,.51;%
289
+ Sienna1,1,.51,.28;%
290
+ Sienna2,.932,.475,.26;%
291
+ Sienna3,.804,.408,.224;%
292
+ Sienna4,.545,.28,.15;%
293
+ SkyBlue1,.53,.808,1;%
294
+ SkyBlue2,.494,.752,.932;%
295
+ SkyBlue3,.424,.65,.804;%
296
+ SkyBlue4,.29,.44,.545;%
297
+ SlateBlue1,.512,.435,1;%
298
+ SlateBlue2,.48,.404,.932;%
299
+ SlateBlue3,.41,.35,.804;%
300
+ SlateBlue4,.28,.235,.545;%
301
+ SlateGray1,.776,.888,1;%
302
+ SlateGray2,.725,.828,.932;%
303
+ SlateGray3,.624,.712,.804;%
304
+ SlateGray4,.424,.484,.545;%
305
+ Snow1,1,.98,.98;%
306
+ Snow2,.932,.912,.912;%
307
+ Snow3,.804,.79,.79;%
308
+ Snow4,.545,.536,.536;%
309
+ SpringGreen1,0,1,.498;%
310
+ SpringGreen2,0,.932,.464;%
311
+ SpringGreen3,0,.804,.4;%
312
+ SpringGreen4,0,.545,.27;%
313
+ SteelBlue1,.39,.72,1;%
314
+ SteelBlue2,.36,.675,.932;%
315
+ SteelBlue3,.31,.58,.804;%
316
+ SteelBlue4,.21,.392,.545;%
317
+ Tan1,1,.648,.31;%
318
+ Tan2,.932,.604,.288;%
319
+ Tan3,.804,.52,.248;%
320
+ Tan4,.545,.352,.17;%
321
+ Thistle1,1,.884,1;%
322
+ Thistle2,.932,.824,.932;%
323
+ Thistle3,.804,.71,.804;%
324
+ Thistle4,.545,.484,.545;%
325
+ Tomato1,1,.39,.28;%
326
+ Tomato2,.932,.36,.26;%
327
+ Tomato3,.804,.31,.224;%
328
+ Tomato4,.545,.21,.15;%
329
+ Turquoise1,0,.96,1;%
330
+ Turquoise2,0,.898,.932;%
331
+ Turquoise3,0,.772,.804;%
332
+ Turquoise4,0,.525,.545;%
333
+ VioletRed1,1,.244,.59;%
334
+ VioletRed2,.932,.228,.55;%
335
+ VioletRed3,.804,.196,.47;%
336
+ VioletRed4,.545,.132,.32;%
337
+ Wheat1,1,.905,.73;%
338
+ Wheat2,.932,.848,.684;%
339
+ Wheat3,.804,.73,.59;%
340
+ Wheat4,.545,.494,.4;%
341
+ Yellow1,1,1,0;%
342
+ Yellow2,.932,.932,0;%
343
+ Yellow3,.804,.804,0;%
344
+ Yellow4,.545,.545,0;%
345
+ Gray0,.745,.745,.745;%
346
+ Green0,0,1,0;%
347
+ Grey0,.745,.745,.745;%
348
+ Maroon0,.69,.19,.376;%
349
+ Purple0,.628,.125,.94}
350
+ \endinput
351
+ %%
352
+ %% End of file `x11nam.def'.