-
Notifications
You must be signed in to change notification settings - Fork 0
/
ColorTable.cs
executable file
·578 lines (435 loc) · 18.5 KB
/
ColorTable.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using System.ComponentModel;
namespace ManiXButton
{
#region ENUM
public enum Theme
{
MSOffice2010_BLUE = 1,
MSOffice2010_WHITE = 2,
MSOffice2010_RED = 3,
MSOffice2010_Green = 4,
MSOffice2010_Pink = 5,
MSOffice2010_Yellow = 6,
MSOffice2010_Publisher = 7
}
#endregion
#region COLOR TABLE
[TypeConverter(typeof(ExpandableObjectConverter))]
public class Colortable
{
#region Static Color Tables
static Office2010Blue office2010blu = new Office2010Blue();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public static Colortable Office2010Blue
{
get { return office2010blu; }
}
static Office2010Green office2010gr = new Office2010Green();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public static Colortable Office2010Green
{
get { return office2010gr; }
}
static Office2010Red office2010rd = new Office2010Red();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public static Colortable Office2010Red
{
get { return office2010rd; }
}
static Office2010Pink office2010pk = new Office2010Pink();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public static Colortable Office2010Pink
{
get { return office2010pk; }
}
static Office2010Yellow office2010yl = new Office2010Yellow();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public static Colortable Office2010Yellow
{
get { return office2010yl; }
}
static Office2010White office2010wt = new Office2010White();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public static Colortable Office2010White
{
get { return office2010wt; }
}
static Office2010Publisher office2010pb = new Office2010Publisher();
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public static Colortable Office2010Publisher
{
get { return office2010pb; }
}
#endregion
#region Custom Properties
Color textColor = Color.White;
Color selectedTextColor = Color.FromArgb(30, 57, 91);
Color OverTextColor = Color.FromArgb(30, 57, 91);
Color borderColor = Color.FromArgb(31, 72, 161);
Color innerborderColor = Color.FromArgb(68, 135, 228);
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color TextColor
{
get { return textColor; }
set { textColor = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color SelectedTextColor
{
get { return selectedTextColor; }
set { selectedTextColor = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color HoverTextColor
{
get { return OverTextColor; }
set { OverTextColor = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color BorderColor1
{
get { return borderColor; }
set { borderColor = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color BorderColor2
{
get { return innerborderColor; }
set { innerborderColor = value; }
}
#endregion
#region Button Normal
Color buttonNormalBegin = Color.FromArgb(31, 72, 161);
Color buttonNormalMiddleBegin = Color.FromArgb(68, 135, 228);
Color buttonNormalMiddleEnd = Color.FromArgb(41, 97, 181);
Color buttonNormalEnd = Color.FromArgb(62, 125, 219);
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonNormalColor1
{
get { return buttonNormalBegin; }
set { buttonNormalBegin = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonNormalColor2
{
get { return buttonNormalMiddleBegin; }
set { buttonNormalMiddleBegin = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonNormalColor3
{
get { return buttonNormalMiddleEnd; }
set { buttonNormalMiddleEnd = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonNormalColor4
{
get { return buttonNormalEnd; }
set { buttonNormalEnd = value; }
}
#endregion
#region Button Selected
Color buttonSelectedBegin = Color.FromArgb(236, 199, 87);
Color buttonSelectedMiddleBegin = Color.FromArgb(252, 243, 215);
Color buttonSelectedMiddleEnd = Color.FromArgb(255, 229, 117);
Color buttonSelectedEnd = Color.FromArgb(255, 216, 107);
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonSelectedColor1
{
get { return buttonSelectedBegin; }
set { buttonSelectedBegin = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonSelectedColor2
{
get { return buttonSelectedMiddleBegin; }
set { buttonSelectedMiddleBegin = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonSelectedColor3
{
get { return buttonSelectedMiddleEnd; }
set { buttonSelectedMiddleEnd = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonSelectedColor4
{
get { return buttonSelectedEnd; }
set { buttonSelectedEnd = value; }
}
#endregion
#region Button Mouse Over
Color buttonMouseOverBegin = Color.FromArgb(236, 199, 87);
Color buttonMouseOverMiddleBegin = Color.FromArgb(252, 243, 215);
Color buttonMouseOverMiddleEnd = Color.FromArgb(249, 225, 137);
Color buttonMouseOverEnd = Color.FromArgb(251, 249, 224);
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonMouseOverColor1
{
get { return buttonMouseOverBegin; }
set { buttonMouseOverBegin = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonMouseOverColor2
{
get { return buttonMouseOverMiddleBegin; }
set { buttonMouseOverMiddleBegin = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonMouseOverColor3
{
get { return buttonMouseOverMiddleEnd; }
set { buttonMouseOverMiddleEnd = value; }
}
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public virtual Color ButtonMouseOverColor4
{
get { return buttonMouseOverEnd; }
set { buttonMouseOverEnd = value; }
}
#endregion
}
#endregion
#region Office 2010 Blue
public class Office2010Blue : Colortable
{
public Office2010Blue()
{
// Border Color
this.BorderColor1 = Color.FromArgb(31, 72, 161);
this.BorderColor2 = Color.FromArgb(68, 135, 228);
// Button Text Color
this.TextColor = Color.White;
this.SelectedTextColor = Color.FromArgb(30, 57, 91);
this.HoverTextColor = Color.FromArgb(30, 57, 91);
// Button normal color
this.ButtonNormalColor1 = Color.FromArgb(31, 72, 161);
this.ButtonNormalColor2 = Color.FromArgb(68, 135, 228);
this.ButtonNormalColor3 = Color.FromArgb(41, 97, 181);
this.ButtonNormalColor4 = Color.FromArgb(62, 125, 219);
// Button mouseover color
this.ButtonMouseOverColor1 = Color.FromArgb(236, 199, 87);
this.ButtonMouseOverColor2 = Color.FromArgb(252, 243, 215);
this.ButtonMouseOverColor3 = Color.FromArgb(249, 225, 137);
this.ButtonMouseOverColor4 = Color.FromArgb(251, 249, 224);
// Button selected color
this.ButtonSelectedColor1 = Color.FromArgb(236, 199, 87);
this.ButtonSelectedColor2 = Color.FromArgb(252, 243, 215);
this.ButtonSelectedColor3 = Color.FromArgb(255, 229, 117);
this.ButtonSelectedColor4 = Color.FromArgb(255, 216, 107);
}
public override string ToString()
{
return "Office2010Blue";
}
}
#endregion
#region Office 2010 GREEN
public class Office2010Green : Colortable
{
public Office2010Green()
{
// Border Color
this.BorderColor1 = Color.FromArgb(31, 72, 161);
this.BorderColor2 = Color.FromArgb(68, 135, 228);
// Button Text Color
this.TextColor = Color.White;
this.SelectedTextColor = Color.FromArgb(30, 57, 91);
this.HoverTextColor = Color.FromArgb(30, 57, 91);
// Button normal color
this.ButtonNormalColor1 = Color.FromArgb(42, 126, 43);
this.ButtonNormalColor2 = Color.FromArgb(94, 184, 67);
this.ButtonNormalColor3 = Color.FromArgb(42, 126, 43);
this.ButtonNormalColor4 = Color.FromArgb(94, 184, 67);
// Button mouseover color
this.ButtonMouseOverColor1 = Color.FromArgb(236, 199, 87);
this.ButtonMouseOverColor2 = Color.FromArgb(252, 243, 215);
this.ButtonMouseOverColor3 = Color.FromArgb(249, 225, 137);
this.ButtonMouseOverColor4 = Color.FromArgb(251, 249, 224);
// Button selected color
this.ButtonSelectedColor1 = Color.FromArgb(236, 199, 87);
this.ButtonSelectedColor2 = Color.FromArgb(252, 243, 215);
this.ButtonSelectedColor3 = Color.FromArgb(255, 229, 117);
this.ButtonSelectedColor4 = Color.FromArgb(255, 216, 107);
}
public override string ToString()
{
return "Office2010Green";
}
}
#endregion
#region Office 2010 Red
public class Office2010Red : Colortable
{
public Office2010Red()
{
// Border Color
this.BorderColor1 = Color.FromArgb(31, 72, 161);
this.BorderColor2 = Color.FromArgb(68, 135, 228);
// Button Text Color
this.TextColor = Color.White;
this.SelectedTextColor = Color.FromArgb(30, 57, 91);
this.HoverTextColor = Color.FromArgb(30, 57, 91);
// Button normal color
this.ButtonNormalColor1 = Color.FromArgb(255,0,0);
this.ButtonNormalColor2 = Color.FromArgb(255,0,0);
this.ButtonNormalColor3 = Color.Maroon;
this.ButtonNormalColor4 = Color.FromArgb(255,0,0);
// Button mouseover color
this.ButtonMouseOverColor1 = Color.FromArgb(236, 199, 87);
this.ButtonMouseOverColor2 = Color.FromArgb(252, 243, 215);
this.ButtonMouseOverColor3 = Color.FromArgb(249, 225, 137);
this.ButtonMouseOverColor4 = Color.FromArgb(251, 249, 224);
// Button selected color
this.ButtonSelectedColor1 = Color.FromArgb(236, 199, 87);
this.ButtonSelectedColor2 = Color.FromArgb(252, 243, 215);
this.ButtonSelectedColor3 = Color.FromArgb(255, 229, 117);
this.ButtonSelectedColor4 = Color.FromArgb(255, 216, 107);
}
public override string ToString()
{
return "Office2010Red";
}
}
#endregion
#region Office 2010 Pink
public class Office2010Pink : Colortable
{
public Office2010Pink()
{
// Border Color
this.BorderColor1 = Color.FromArgb(31, 72, 161);
this.BorderColor2 = Color.FromArgb(68, 135, 228);
// Button Text Color
this.TextColor = Color.White;
this.SelectedTextColor = Color.FromArgb(30, 57, 91);
this.HoverTextColor = Color.FromArgb(30, 57, 91);
// Button normal color
this.ButtonNormalColor1 = Color.FromArgb(175, 6, 77);
this.ButtonNormalColor2 = Color.FromArgb(222, 52, 119);
this.ButtonNormalColor3 = Color.FromArgb(175, 6, 77);
this.ButtonNormalColor4 = Color.FromArgb(222, 52, 119);
// Button mouseover color
this.ButtonMouseOverColor1 = Color.FromArgb(236, 199, 87);
this.ButtonMouseOverColor2 = Color.FromArgb(252, 243, 215);
this.ButtonMouseOverColor3 = Color.FromArgb(249, 225, 137);
this.ButtonMouseOverColor4 = Color.FromArgb(251, 249, 224);
// Button selected color
this.ButtonSelectedColor1 = Color.FromArgb(236, 199, 87);
this.ButtonSelectedColor2 = Color.FromArgb(252, 243, 215);
this.ButtonSelectedColor3 = Color.FromArgb(255, 229, 117);
this.ButtonSelectedColor4 = Color.FromArgb(255, 216, 107);
}
public override string ToString()
{
return "Office2010Pink";
}
}
#endregion
#region Office 2010 White
public class Office2010White : Colortable
{
public Office2010White()
{
// Border Color
this.BorderColor1 = Color.FromArgb(31, 72, 161);
this.BorderColor2 = Color.FromArgb(68, 135, 228);
// Button Text Color
this.TextColor = Color.Black;
this.SelectedTextColor = Color.FromArgb(30, 57, 91);
this.HoverTextColor = Color.FromArgb(30, 57, 91);
// Button normal color
this.ButtonNormalColor1 = Color.FromArgb(154, 154, 154);
this.ButtonNormalColor2 = Color.FromArgb(255, 255, 255);
this.ButtonNormalColor3 = Color.FromArgb(235, 235, 235);
this.ButtonNormalColor4 = Color.FromArgb(255, 255, 255);
// Button mouseover color
this.ButtonMouseOverColor1 = Color.FromArgb(236, 199, 87);
this.ButtonMouseOverColor2 = Color.FromArgb(252, 243, 215);
this.ButtonMouseOverColor3 = Color.FromArgb(249, 225, 137);
this.ButtonMouseOverColor4 = Color.FromArgb(251, 249, 224);
// Button selected color
this.ButtonSelectedColor1 = Color.FromArgb(236, 199, 87);
this.ButtonSelectedColor2 = Color.FromArgb(252, 243, 215);
this.ButtonSelectedColor3 = Color.FromArgb(255, 229, 117);
this.ButtonSelectedColor4 = Color.FromArgb(255, 216, 107);
}
public override string ToString()
{
return "Office2010White";
}
}
#endregion
#region Office 2010 Yellow
public class Office2010Yellow : Colortable
{
public Office2010Yellow()
{
// Border Color
this.BorderColor1 = Color.FromArgb(31, 72, 161);
this.BorderColor2 = Color.FromArgb(68, 135, 228);
// Button Text Color
this.TextColor = Color.White;
this.SelectedTextColor = Color.FromArgb(30, 57, 91);
this.HoverTextColor = Color.FromArgb(30, 57, 91);
// Button normal color
this.ButtonNormalColor1 = Color.FromArgb(252, 161, 8);
this.ButtonNormalColor2 = Color.FromArgb(251, 191, 45);
this.ButtonNormalColor3 = Color.FromArgb(252, 161, 8);
this.ButtonNormalColor4 = Color.FromArgb(251, 191, 45);
// Button mouseover color
this.ButtonMouseOverColor1 = Color.FromArgb(236, 199, 87);
this.ButtonMouseOverColor2 = Color.FromArgb(252, 243, 215);
this.ButtonMouseOverColor3 = Color.FromArgb(249, 225, 137);
this.ButtonMouseOverColor4 = Color.FromArgb(251, 249, 224);
// Button selected color
this.ButtonSelectedColor1 = Color.FromArgb(236, 199, 87);
this.ButtonSelectedColor2 = Color.FromArgb(252, 243, 215);
this.ButtonSelectedColor3 = Color.FromArgb(255, 229, 117);
this.ButtonSelectedColor4 = Color.FromArgb(255, 216, 107);
}
public override string ToString()
{
return "Office2010Yellow";
}
}
#endregion
#region Office 2010 Publisher
public class Office2010Publisher : Colortable
{
public Office2010Publisher()
{
// Border Color
this.BorderColor1 = Color.FromArgb(31, 72, 161);
this.BorderColor2 = Color.FromArgb(68, 135, 228);
// Button Text Color
this.TextColor = Color.White;
this.SelectedTextColor = Color.FromArgb(30, 57, 91);
this.HoverTextColor = Color.FromArgb(30, 57, 91);
// Button normal color
this.ButtonNormalColor1 = Color.FromArgb(0, 126, 126);
this.ButtonNormalColor2 = Color.FromArgb(31, 173, 167);
this.ButtonNormalColor3 = Color.FromArgb(0, 126, 126);
this.ButtonNormalColor4 = Color.FromArgb(31, 173, 167);
// Button mouseover color
this.ButtonMouseOverColor1 = Color.FromArgb(236, 199, 87);
this.ButtonMouseOverColor2 = Color.FromArgb(252, 243, 215);
this.ButtonMouseOverColor3 = Color.FromArgb(249, 225, 137);
this.ButtonMouseOverColor4 = Color.FromArgb(251, 249, 224);
// Button selected color
this.ButtonSelectedColor1 = Color.FromArgb(236, 199, 87);
this.ButtonSelectedColor2 = Color.FromArgb(252, 243, 215);
this.ButtonSelectedColor3 = Color.FromArgb(255, 229, 117);
this.ButtonSelectedColor4 = Color.FromArgb(255, 216, 107);
}
public override string ToString()
{
return "Office2010Publisher";
}
}
#endregion
}