-
Notifications
You must be signed in to change notification settings - Fork 3
/
SUColor.m
executable file
·6639 lines (4428 loc) · 429 KB
/
SUColor.m
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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//
// SUColor.m
//
/*
The MIT License
Copyright (c) 2009 Sumihiro Ueda
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS (AS FAR AS POSSIBLE)", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR THERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#import "SUColor.h"
@implementation UIColor (SUColor)
// JIS慣用色名 鴇色 / 0xf5c9c6
+ (UIColor *)jpnJISTokiIroColor { return [[[UIColor alloc] initWithRed:(245.0f/255.0f) green:(201.0f/255.0f) blue:(198.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 躑躅色 / 0xef5b9c
+ (UIColor *)jpnJISTsutsujiIroColor { return [[[UIColor alloc] initWithRed:(239.0f/255.0f) green:(91.0f/255.0f) blue:(156.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 桜色 / 0xfeeeed
+ (UIColor *)jpnJISSakuraIroColor { return [[[UIColor alloc] initWithRed:(254.0f/255.0f) green:(238.0f/255.0f) blue:(237.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 薔薇色 / 0xf0566e
+ (UIColor *)jpnJISBaraIroColor { return [[[UIColor alloc] initWithRed:(240.0f/255.0f) green:(86.0f/255.0f) blue:(110.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 韓紅 / 0xf15b6c
+ (UIColor *)jpnJISKarakurenaiColor { return [[[UIColor alloc] initWithRed:(241.0f/255.0f) green:(91.0f/255.0f) blue:(108.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 珊瑚色 / 0xf8a7a0
+ (UIColor *)jpnJISSangoIroColor { return [[[UIColor alloc] initWithRed:(248.0f/255.0f) green:(167.0f/255.0f) blue:(160.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紅梅色 / 0xf69c9f
+ (UIColor *)jpnJISKoubaiIroColor { return [[[UIColor alloc] initWithRed:(246.0f/255.0f) green:(156.0f/255.0f) blue:(159.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 桃色 / 0xf58f98
+ (UIColor *)jpnJISMomoIroColor { return [[[UIColor alloc] initWithRed:(245.0f/255.0f) green:(143.0f/255.0f) blue:(152.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紅色 / 0xd71345
+ (UIColor *)jpnJISBeniIroColor { return [[[UIColor alloc] initWithRed:(215.0f/255.0f) green:(19.0f/255.0f) blue:(69.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紅赤 / 0xd93a49
+ (UIColor *)jpnJISBeniakaColor { return [[[UIColor alloc] initWithRed:(217.0f/255.0f) green:(58.0f/255.0f) blue:(73.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 臙脂 / 0xb3424a
+ (UIColor *)jpnJISEnjiColor { return [[[UIColor alloc] initWithRed:(179.0f/255.0f) green:(66.0f/255.0f) blue:(74.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 蘇芳 / 0x973c3f
+ (UIColor *)jpnJISSuouColor { return [[[UIColor alloc] initWithRed:(151.0f/255.0f) green:(60.0f/255.0f) blue:(63.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 茜色 / 0xb22d35
+ (UIColor *)jpnJISAkaneIroColor { return [[[UIColor alloc] initWithRed:(178.0f/255.0f) green:(45.0f/255.0f) blue:(53.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 赤 / 0xed1a3d
+ (UIColor *)jpnJISAkaColor { return [[[UIColor alloc] initWithRed:(237.0f/255.0f) green:(26.0f/255.0f) blue:(61.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 朱色 / 0xf04e23
+ (UIColor *)jpnJISSyuIroColor { return [[[UIColor alloc] initWithRed:(240.0f/255.0f) green:(78.0f/255.0f) blue:(35.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紅樺色 / 0xb4534b
+ (UIColor *)jpnJISBenikabaIroColor { return [[[UIColor alloc] initWithRed:(180.0f/255.0f) green:(83.0f/255.0f) blue:(75.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紅緋 / 0xef4136
+ (UIColor *)jpnJISBenihiColor { return [[[UIColor alloc] initWithRed:(239.0f/255.0f) green:(65.0f/255.0f) blue:(54.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鉛丹色 / 0xe66b58
+ (UIColor *)jpnJISEntanIroColor { return [[[UIColor alloc] initWithRed:(230.0f/255.0f) green:(107.0f/255.0f) blue:(88.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紅海老茶 / 0x963531
+ (UIColor *)jpnJISBeniebichaColor { return [[[UIColor alloc] initWithRed:(150.0f/255.0f) green:(53.0f/255.0f) blue:(49.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鳶色 / 0x85403a
+ (UIColor *)jpnJISTobiIroColor { return [[[UIColor alloc] initWithRed:(133.0f/255.0f) green:(64.0f/255.0f) blue:(58.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 小豆色 / 0x98514b
+ (UIColor *)jpnJISAzukiIroColor { return [[[UIColor alloc] initWithRed:(152.0f/255.0f) green:(81.0f/255.0f) blue:(75.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 弁柄色 / 0x892f1b
+ (UIColor *)jpnJISBengaraIroColor { return [[[UIColor alloc] initWithRed:(137.0f/255.0f) green:(47.0f/255.0f) blue:(27.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 海老茶 / 0x7c4036
+ (UIColor *)jpnJISEbichaColor { return [[[UIColor alloc] initWithRed:(124.0f/255.0f) green:(64.0f/255.0f) blue:(54.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 金赤 / 0xef4123
+ (UIColor *)jpnJISKinakaColor { return [[[UIColor alloc] initWithRed:(239.0f/255.0f) green:(65.0f/255.0f) blue:(35.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 赤茶 / 0xb4533c
+ (UIColor *)jpnJISAkachaColor { return [[[UIColor alloc] initWithRed:(180.0f/255.0f) green:(83.0f/255.0f) blue:(60.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 赤錆色 / 0x84331f
+ (UIColor *)jpnJISAkasabiIroColor { return [[[UIColor alloc] initWithRed:(132.0f/255.0f) green:(51.0f/255.0f) blue:(31.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黄丹 / 0xf47a55
+ (UIColor *)jpnJISOuniColor { return [[[UIColor alloc] initWithRed:(244.0f/255.0f) green:(122.0f/255.0f) blue:(85.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 赤橙 / 0xf15a22
+ (UIColor *)jpnJISAkadaidaiColor { return [[[UIColor alloc] initWithRed:(241.0f/255.0f) green:(90.0f/255.0f) blue:(34.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 柿色 / 0xf3704b
+ (UIColor *)jpnJISKakiIroColor { return [[[UIColor alloc] initWithRed:(243.0f/255.0f) green:(112.0f/255.0f) blue:(75.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 肉桂色 / 0xda765b
+ (UIColor *)jpnJISNikkeiIroColor { return [[[UIColor alloc] initWithRed:(218.0f/255.0f) green:(118.0f/255.0f) blue:(91.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 樺色 / 0xae5039
+ (UIColor *)jpnJISKabaIroColor { return [[[UIColor alloc] initWithRed:(174.0f/255.0f) green:(80.0f/255.0f) blue:(57.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 煉瓦色 / 0xae5039
+ (UIColor *)jpnJISRengaIroColor { return [[[UIColor alloc] initWithRed:(174.0f/255.0f) green:(80.0f/255.0f) blue:(57.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 錆色 / 0x6a3427
+ (UIColor *)jpnJISSabiIroColor { return [[[UIColor alloc] initWithRed:(106.0f/255.0f) green:(52.0f/255.0f) blue:(39.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 檜皮色 / 0x8f4b38
+ (UIColor *)jpnJISHiwadaIroColor { return [[[UIColor alloc] initWithRed:(143.0f/255.0f) green:(75.0f/255.0f) blue:(56.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 栗色 / 0x722f10
+ (UIColor *)jpnJISKuriIroColor { return [[[UIColor alloc] initWithRed:(114.0f/255.0f) green:(47.0f/255.0f) blue:(16.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黄赤 / 0xf36c21
+ (UIColor *)jpnJISKiakaColor { return [[[UIColor alloc] initWithRed:(243.0f/255.0f) green:(108.0f/255.0f) blue:(33.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 代赭 / 0xb4532a
+ (UIColor *)jpnJISTaisyaColor { return [[[UIColor alloc] initWithRed:(180.0f/255.0f) green:(83.0f/255.0f) blue:(42.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 駱駝色 / 0xb7704f
+ (UIColor *)jpnJISRakudaIroColor { return [[[UIColor alloc] initWithRed:(183.0f/255.0f) green:(112.0f/255.0f) blue:(79.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黄茶 / 0xde773f
+ (UIColor *)jpnJISKichaColor { return [[[UIColor alloc] initWithRed:(222.0f/255.0f) green:(119.0f/255.0f) blue:(63.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 肌色 / 0xfedcbd
+ (UIColor *)jpnJISHadaIroColor { return [[[UIColor alloc] initWithRed:(254.0f/255.0f) green:(220.0f/255.0f) blue:(189.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 橙色 / 0xf58220
+ (UIColor *)jpnJISDaidaiIroColor { return [[[UIColor alloc] initWithRed:(245.0f/255.0f) green:(130.0f/255.0f) blue:(32.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 灰茶 / 0x905c40
+ (UIColor *)jpnJISHaichaColor { return [[[UIColor alloc] initWithRed:(144.0f/255.0f) green:(92.0f/255.0f) blue:(64.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 茶色 / 0x864a2b
+ (UIColor *)jpnJISChaIroColor { return [[[UIColor alloc] initWithRed:(134.0f/255.0f) green:(74.0f/255.0f) blue:(43.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 焦茶 / 0x6b493d
+ (UIColor *)jpnJISKogechaColor { return [[[UIColor alloc] initWithRed:(107.0f/255.0f) green:(73.0f/255.0f) blue:(61.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 柑子色 / 0xfaa755
+ (UIColor *)jpnJISKoujiIroColor { return [[[UIColor alloc] initWithRed:(250.0f/255.0f) green:(167.0f/255.0f) blue:(85.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 杏色 / 0xfab27b
+ (UIColor *)jpnJISAnzuIroColor { return [[[UIColor alloc] initWithRed:(250.0f/255.0f) green:(178.0f/255.0f) blue:(123.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 蜜柑色 / 0xf68b1f
+ (UIColor *)jpnJISMikanIroColor { return [[[UIColor alloc] initWithRed:(246.0f/255.0f) green:(139.0f/255.0f) blue:(31.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 褐色 / 0x843900
+ (UIColor *)jpnJISKasshokuColor { return [[[UIColor alloc] initWithRed:(132.0f/255.0f) green:(57.0f/255.0f) blue:(0.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 土色 / 0xb47142
+ (UIColor *)jpnJISTsuchiIroColor { return [[[UIColor alloc] initWithRed:(180.0f/255.0f) green:(113.0f/255.0f) blue:(66.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 小麦色 / 0xe19661
+ (UIColor *)jpnJISKomugiIroColor { return [[[UIColor alloc] initWithRed:(225.0f/255.0f) green:(150.0f/255.0f) blue:(97.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 琥珀色 / 0xb76f3b
+ (UIColor *)jpnJISKohakuIroColor { return [[[UIColor alloc] initWithRed:(183.0f/255.0f) green:(111.0f/255.0f) blue:(59.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 金茶 / 0xe0861a
+ (UIColor *)jpnJISKinchaColor { return [[[UIColor alloc] initWithRed:(224.0f/255.0f) green:(134.0f/255.0f) blue:(26.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 卵色 / 0xffce7b
+ (UIColor *)jpnJISTamagoIroColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(206.0f/255.0f) blue:(123.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 山吹色 / 0xfcaf17
+ (UIColor *)jpnJISYamabukiIroColor { return [[[UIColor alloc] initWithRed:(252.0f/255.0f) green:(175.0f/255.0f) blue:(23.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黄土色 / 0xba8448
+ (UIColor *)jpnJISOudoIroColor { return [[[UIColor alloc] initWithRed:(186.0f/255.0f) green:(132.0f/255.0f) blue:(72.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 朽葉色 / 0x896a45
+ (UIColor *)jpnJISKuchibaIroColor { return [[[UIColor alloc] initWithRed:(137.0f/255.0f) green:(106.0f/255.0f) blue:(69.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 向日葵色 / 0xffc20e
+ (UIColor *)jpnJISHimawariIroColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(194.0f/255.0f) blue:(14.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鬱金色 / 0xfdb933
+ (UIColor *)jpnJISUkonIroColor { return [[[UIColor alloc] initWithRed:(253.0f/255.0f) green:(185.0f/255.0f) blue:(51.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 砂色 / 0xd3c6a6
+ (UIColor *)jpnJISSunaIroColor { return [[[UIColor alloc] initWithRed:(211.0f/255.0f) green:(198.0f/255.0f) blue:(166.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 芥子色 / 0xc9ab53
+ (UIColor *)jpnJISKarashiIroColor { return [[[UIColor alloc] initWithRed:(201.0f/255.0f) green:(171.0f/255.0f) blue:(83.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黄 / 0xffd400
+ (UIColor *)jpnJISKiColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(212.0f/255.0f) blue:(0.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 蒲公英色 / 0xffd400
+ (UIColor *)jpnJISTanpopoIroColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(212.0f/255.0f) blue:(0.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鶯茶 / 0x6d5826
+ (UIColor *)jpnJISUguisuchaColor { return [[[UIColor alloc] initWithRed:(109.0f/255.0f) green:(88.0f/255.0f) blue:(38.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 中黄 / 0xffe500
+ (UIColor *)jpnJISChuukiColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(229.0f/255.0f) blue:(0.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 刈安色 / 0xf0dc70
+ (UIColor *)jpnJISKariyasuIroColor { return [[[UIColor alloc] initWithRed:(240.0f/255.0f) green:(220.0f/255.0f) blue:(112.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黄檗色 / 0xfcf16e
+ (UIColor *)jpnJISKihadaIroColor { return [[[UIColor alloc] initWithRed:(252.0f/255.0f) green:(241.0f/255.0f) blue:(110.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 海松色 / 0x6e6b41
+ (UIColor *)jpnJISMiruIroColor { return [[[UIColor alloc] initWithRed:(110.0f/255.0f) green:(107.0f/255.0f) blue:(65.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鶸色 / 0xcbc547
+ (UIColor *)jpnJISHiwaIroColor { return [[[UIColor alloc] initWithRed:(203.0f/255.0f) green:(197.0f/255.0f) blue:(71.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鶯色 / 0x918d40
+ (UIColor *)jpnJISUguisuIroColor { return [[[UIColor alloc] initWithRed:(145.0f/255.0f) green:(141.0f/255.0f) blue:(64.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 抹茶色 / 0xb7ba6b
+ (UIColor *)jpnJISMacchaIroColor { return [[[UIColor alloc] initWithRed:(183.0f/255.0f) green:(186.0f/255.0f) blue:(107.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黄緑 / 0xb2d235
+ (UIColor *)jpnJISKimidoriColor { return [[[UIColor alloc] initWithRed:(178.0f/255.0f) green:(210.0f/255.0f) blue:(53.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 苔色 / 0x63822d
+ (UIColor *)jpnJISKokeIroColor { return [[[UIColor alloc] initWithRed:(99.0f/255.0f) green:(130.0f/255.0f) blue:(45.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 若草色 / 0xc3d941
+ (UIColor *)jpnJISWakakusaIroColor { return [[[UIColor alloc] initWithRed:(195.0f/255.0f) green:(217.0f/255.0f) blue:(65.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 萌黄 / 0xa9d159
+ (UIColor *)jpnJISMoegiColor { return [[[UIColor alloc] initWithRed:(169.0f/255.0f) green:(209.0f/255.0f) blue:(89.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 草色 / 0x6d8346
+ (UIColor *)jpnJISKusaIroColor { return [[[UIColor alloc] initWithRed:(109.0f/255.0f) green:(131.0f/255.0f) blue:(70.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 若葉色 / 0xabc88b
+ (UIColor *)jpnJISWakabaIroColor { return [[[UIColor alloc] initWithRed:(171.0f/255.0f) green:(200.0f/255.0f) blue:(139.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 松葉色 / 0x74905d
+ (UIColor *)jpnJISMatsubaIroColor { return [[[UIColor alloc] initWithRed:(116.0f/255.0f) green:(144.0f/255.0f) blue:(93.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 白緑 / 0xcde6c7
+ (UIColor *)jpnJISByakurokuColor { return [[[UIColor alloc] initWithRed:(205.0f/255.0f) green:(230.0f/255.0f) blue:(199.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 緑 / 0x008000
+ (UIColor *)jpnJISMidoriColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(128.0f/255.0f) blue:(0.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 常磐色 / 0x007b49
+ (UIColor *)jpnJISTokiwaIroColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(123.0f/255.0f) blue:(73.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 緑青色 / 0x47845e
+ (UIColor *)jpnJISRokushouIroColor { return [[[UIColor alloc] initWithRed:(71.0f/255.0f) green:(132.0f/255.0f) blue:(94.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 千歳緑 / 0x2b6442
+ (UIColor *)jpnJISChitosemidoriColor { return [[[UIColor alloc] initWithRed:(43.0f/255.0f) green:(100.0f/255.0f) blue:(66.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 深緑 / 0x005931
+ (UIColor *)jpnJISFukamidoriColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(89.0f/255.0f) blue:(49.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 萌葱色 / 0x006c4f
+ (UIColor *)jpnJISMoegiIroColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(108.0f/255.0f) blue:(79.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 若竹色 / 0x65c294
+ (UIColor *)jpnJISWakatakeIroColor { return [[[UIColor alloc] initWithRed:(101.0f/255.0f) green:(194.0f/255.0f) blue:(148.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 青磁色 / 0x60b49f
+ (UIColor *)jpnJISSeijiIroColor { return [[[UIColor alloc] initWithRed:(96.0f/255.0f) green:(180.0f/255.0f) blue:(159.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 青竹色 / 0x72baa7
+ (UIColor *)jpnJISAotakeIroColor { return [[[UIColor alloc] initWithRed:(114.0f/255.0f) green:(186.0f/255.0f) blue:(167.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鉄色 / 0x005344
+ (UIColor *)jpnJISTetsuIroColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(83.0f/255.0f) blue:(68.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 青緑 / 0x00ae95
+ (UIColor *)jpnJISAomidoriColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(174.0f/255.0f) blue:(149.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 錆浅葱 / 0x508a88
+ (UIColor *)jpnJISSabiasagiColor { return [[[UIColor alloc] initWithRed:(80.0f/255.0f) green:(138.0f/255.0f) blue:(136.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 水浅葱 / 0x70a19f
+ (UIColor *)jpnJISMizuasagiColor { return [[[UIColor alloc] initWithRed:(112.0f/255.0f) green:(161.0f/255.0f) blue:(159.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 新橋色 / 0x5ab9c1
+ (UIColor *)jpnJISShinbashiIroColor { return [[[UIColor alloc] initWithRed:(90.0f/255.0f) green:(185.0f/255.0f) blue:(193.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 浅葱 / 0x00a4ac
+ (UIColor *)jpnJISAsagiColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(164.0f/255.0f) blue:(172.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 白群 / 0x78cdd1
+ (UIColor *)jpnJISByakugunColor { return [[[UIColor alloc] initWithRed:(120.0f/255.0f) green:(205.0f/255.0f) blue:(209.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 納戸色 / 0x007c8a
+ (UIColor *)jpnJISNandoIroColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(124.0f/255.0f) blue:(138.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 甕覗き / 0x94d6da
+ (UIColor *)jpnJISKamenozokiColor { return [[[UIColor alloc] initWithRed:(148.0f/255.0f) green:(214.0f/255.0f) blue:(218.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 水色 / 0xafdfe4
+ (UIColor *)jpnJISMizuIroColor { return [[[UIColor alloc] initWithRed:(175.0f/255.0f) green:(223.0f/255.0f) blue:(228.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 藍鼠 / 0x5e7c85
+ (UIColor *)jpnJISAinezuColor { return [[[UIColor alloc] initWithRed:(94.0f/255.0f) green:(124.0f/255.0f) blue:(133.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 空色 / 0x90d7ec
+ (UIColor *)jpnJISSoraIroColor { return [[[UIColor alloc] initWithRed:(144.0f/255.0f) green:(215.0f/255.0f) blue:(236.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 青 / 0x009ad6
+ (UIColor *)jpnJISAoColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(154.0f/255.0f) blue:(214.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 藍色 / 0x0f5474
+ (UIColor *)jpnJISAiIroColor { return [[[UIColor alloc] initWithRed:(15.0f/255.0f) green:(84.0f/255.0f) blue:(116.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 濃藍 / 0x0d2a52
+ (UIColor *)jpnJISKoiaiColor { return [[[UIColor alloc] initWithRed:(13.0f/255.0f) green:(42.0f/255.0f) blue:(82.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 勿忘草色 / 0x7bbfea
+ (UIColor *)jpnJISWasurenagusaIroColor { return [[[UIColor alloc] initWithRed:(123.0f/255.0f) green:(191.0f/255.0f) blue:(234.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 露草色 / 0x21a0db
+ (UIColor *)jpnJISTsuyukusaIroColor { return [[[UIColor alloc] initWithRed:(33.0f/255.0f) green:(160.0f/255.0f) blue:(219.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 縹色 / 0x267ca7
+ (UIColor *)jpnJISHanadaIroColor { return [[[UIColor alloc] initWithRed:(38.0f/255.0f) green:(124.0f/255.0f) blue:(167.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紺青 / 0x1a4472
+ (UIColor *)jpnJISKonjouColor { return [[[UIColor alloc] initWithRed:(26.0f/255.0f) green:(68.0f/255.0f) blue:(114.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 瑠璃色 / 0x2a5caa
+ (UIColor *)jpnJISRuriIroColor { return [[[UIColor alloc] initWithRed:(42.0f/255.0f) green:(92.0f/255.0f) blue:(170.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 瑠璃紺 / 0x224b8f
+ (UIColor *)jpnJISRurikonColor { return [[[UIColor alloc] initWithRed:(34.0f/255.0f) green:(75.0f/255.0f) blue:(143.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紺色 / 0x233b6c
+ (UIColor *)jpnJISKonIroColor { return [[[UIColor alloc] initWithRed:(35.0f/255.0f) green:(59.0f/255.0f) blue:(108.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 杜若色 / 0x4b5eaa
+ (UIColor *)jpnJISKakitsubataIroColor { return [[[UIColor alloc] initWithRed:(75.0f/255.0f) green:(94.0f/255.0f) blue:(170.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 勝色 / 0x4d5269
+ (UIColor *)jpnJISKachiIroColor { return [[[UIColor alloc] initWithRed:(77.0f/255.0f) green:(82.0f/255.0f) blue:(105.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 群青色 / 0x465daa
+ (UIColor *)jpnJISGunjouIroColor { return [[[UIColor alloc] initWithRed:(70.0f/255.0f) green:(93.0f/255.0f) blue:(170.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鉄紺 / 0x0f1a45
+ (UIColor *)jpnJISTetsukonColor { return [[[UIColor alloc] initWithRed:(15.0f/255.0f) green:(26.0f/255.0f) blue:(69.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 藤納戸 / 0x6a6da9
+ (UIColor *)jpnJISFujinandoColor { return [[[UIColor alloc] initWithRed:(106.0f/255.0f) green:(109.0f/255.0f) blue:(169.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 桔梗色 / 0x585eaa
+ (UIColor *)jpnJISKikyouIroColor { return [[[UIColor alloc] initWithRed:(88.0f/255.0f) green:(94.0f/255.0f) blue:(170.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紺藍 / 0x464a88
+ (UIColor *)jpnJISKonaiColor { return [[[UIColor alloc] initWithRed:(70.0f/255.0f) green:(74.0f/255.0f) blue:(136.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 藤色 / 0xafb4db
+ (UIColor *)jpnJISFujiIroColor { return [[[UIColor alloc] initWithRed:(175.0f/255.0f) green:(180.0f/255.0f) blue:(219.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 藤紫 / 0x9b95c9
+ (UIColor *)jpnJISFujimurasakiColor { return [[[UIColor alloc] initWithRed:(155.0f/255.0f) green:(149.0f/255.0f) blue:(201.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 青紫 / 0x6f51a1
+ (UIColor *)jpnJISAomurasakiColor { return [[[UIColor alloc] initWithRed:(111.0f/255.0f) green:(81.0f/255.0f) blue:(161.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 菫色 / 0x705da8
+ (UIColor *)jpnJISSumireIroColor { return [[[UIColor alloc] initWithRed:(112.0f/255.0f) green:(93.0f/255.0f) blue:(168.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鳩羽色 / 0x9687a3
+ (UIColor *)jpnJISHatobaIroColor { return [[[UIColor alloc] initWithRed:(150.0f/255.0f) green:(135.0f/255.0f) blue:(163.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 菖蒲色 / 0x694d9f
+ (UIColor *)jpnJISShoubuIroColor { return [[[UIColor alloc] initWithRed:(105.0f/255.0f) green:(77.0f/255.0f) blue:(159.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 江戸紫 / 0x6d5498
+ (UIColor *)jpnJISEdomurasakiColor { return [[[UIColor alloc] initWithRed:(109.0f/255.0f) green:(84.0f/255.0f) blue:(152.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紫 / 0x8b52a1
+ (UIColor *)jpnJISMurasakiColor { return [[[UIColor alloc] initWithRed:(139.0f/255.0f) green:(82.0f/255.0f) blue:(161.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 古代紫 / 0x7d5484
+ (UIColor *)jpnJISKodaimurasakiColor { return [[[UIColor alloc] initWithRed:(125.0f/255.0f) green:(84.0f/255.0f) blue:(132.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 茄子紺 / 0x451f49
+ (UIColor *)jpnJISNasukonColor { return [[[UIColor alloc] initWithRed:(69.0f/255.0f) green:(31.0f/255.0f) blue:(73.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 紫紺 / 0x411445
+ (UIColor *)jpnJISShikonColor { return [[[UIColor alloc] initWithRed:(65.0f/255.0f) green:(20.0f/255.0f) blue:(69.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 菖蒲色 / 0xc77eb5
+ (UIColor *)jpnJISAyameIroColor { return [[[UIColor alloc] initWithRed:(199.0f/255.0f) green:(126.0f/255.0f) blue:(181.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 牡丹色 / 0xe761a4
+ (UIColor *)jpnJISBotanIroColor { return [[[UIColor alloc] initWithRed:(231.0f/255.0f) green:(97.0f/255.0f) blue:(164.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 赤紫 / 0xf067a6
+ (UIColor *)jpnJISAkamurasakiColor { return [[[UIColor alloc] initWithRed:(240.0f/255.0f) green:(103.0f/255.0f) blue:(166.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 白 / 0xfffffb
+ (UIColor *)jpnJISShiroColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(255.0f/255.0f) blue:(251.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 胡粉色 / 0xfffef9
+ (UIColor *)jpnJISGofunIroColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(254.0f/255.0f) blue:(249.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 生成り色 / 0xf6f5ea
+ (UIColor *)jpnJISKinariIroColor { return [[[UIColor alloc] initWithRed:(246.0f/255.0f) green:(245.0f/255.0f) blue:(234.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 象牙色 / 0xf3ecd8
+ (UIColor *)jpnJISZougeIroColor { return [[[UIColor alloc] initWithRed:(243.0f/255.0f) green:(236.0f/255.0f) blue:(216.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 銀鼠 / 0xa1a3a6
+ (UIColor *)jpnJISGinnezuColor { return [[[UIColor alloc] initWithRed:(161.0f/255.0f) green:(163.0f/255.0f) blue:(166.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 茶鼠 / 0x9d9087
+ (UIColor *)jpnJISChanezuColor { return [[[UIColor alloc] initWithRed:(157.0f/255.0f) green:(144.0f/255.0f) blue:(135.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鼠色 / 0x8a8c8e
+ (UIColor *)jpnJISNezumiIroColor { return [[[UIColor alloc] initWithRed:(138.0f/255.0f) green:(140.0f/255.0f) blue:(142.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 利休鼠 / 0x54745c
+ (UIColor *)jpnJISRikyuunezuColor { return [[[UIColor alloc] initWithRed:(84.0f/255.0f) green:(116.0f/255.0f) blue:(92.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鉛色 / 0x72777b
+ (UIColor *)jpnJISNamariIroColor { return [[[UIColor alloc] initWithRed:(114.0f/255.0f) green:(119.0f/255.0f) blue:(123.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 灰色 / 0x717375
+ (UIColor *)jpnJISHaiIroColor { return [[[UIColor alloc] initWithRed:(113.0f/255.0f) green:(115.0f/255.0f) blue:(117.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 煤竹色 / 0x684d44
+ (UIColor *)jpnJISSusutakeIroColor { return [[[UIColor alloc] initWithRed:(104.0f/255.0f) green:(77.0f/255.0f) blue:(68.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黒茶 / 0x4b2d1c
+ (UIColor *)jpnJISKurochaColor { return [[[UIColor alloc] initWithRed:(75.0f/255.0f) green:(45.0f/255.0f) blue:(28.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 墨 / 0x333132
+ (UIColor *)jpnJISSumiColor { return [[[UIColor alloc] initWithRed:(51.0f/255.0f) green:(49.0f/255.0f) blue:(50.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 黒 / 0x0d0116
+ (UIColor *)jpnJISKuroColor { return [[[UIColor alloc] initWithRed:(13.0f/255.0f) green:(1.0f/255.0f) blue:(22.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 鉄黒 / 0x281914
+ (UIColor *)jpnJISTetsuguroColor { return [[[UIColor alloc] initWithRed:(40.0f/255.0f) green:(25.0f/255.0f) blue:(20.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ローズレッド / 0xf05f8d
+ (UIColor *)jpnJISRoseRedColor { return [[[UIColor alloc] initWithRed:(240.0f/255.0f) green:(95.0f/255.0f) blue:(141.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ローズピンク / 0xf5989d
+ (UIColor *)jpnJISRosePinkColor { return [[[UIColor alloc] initWithRed:(245.0f/255.0f) green:(152.0f/255.0f) blue:(157.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 コチニールレッド / 0xc53258
+ (UIColor *)jpnJISCochinealRedColor { return [[[UIColor alloc] initWithRed:(197.0f/255.0f) green:(50.0f/255.0f) blue:(88.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ルビーレッド / 0xcf355d
+ (UIColor *)jpnJISRubyRedColor { return [[[UIColor alloc] initWithRed:(207.0f/255.0f) green:(53.0f/255.0f) blue:(93.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ワインレッド / 0x8d3043
+ (UIColor *)jpnJISWineRedColor { return [[[UIColor alloc] initWithRed:(141.0f/255.0f) green:(48.0f/255.0f) blue:(67.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 バーガンディー / 0x561b24
+ (UIColor *)jpnJISBurgundyColor { return [[[UIColor alloc] initWithRed:(86.0f/255.0f) green:(27.0f/255.0f) blue:(36.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 オールドローズ / 0xd5848c
+ (UIColor *)jpnJISOldRoseColor { return [[[UIColor alloc] initWithRed:(213.0f/255.0f) green:(132.0f/255.0f) blue:(140.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ローズ / 0xef4868
+ (UIColor *)jpnJISRoseColor { return [[[UIColor alloc] initWithRed:(239.0f/255.0f) green:(72.0f/255.0f) blue:(104.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ストロベリー / 0xd83861
+ (UIColor *)jpnJISStrawberryColor { return [[[UIColor alloc] initWithRed:(216.0f/255.0f) green:(56.0f/255.0f) blue:(97.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 コーラルレッド / 0xf8a7a0
+ (UIColor *)jpnJISCoralRedColor { return [[[UIColor alloc] initWithRed:(248.0f/255.0f) green:(167.0f/255.0f) blue:(160.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ピンク / 0xf8aba6
+ (UIColor *)jpnJISPinkColor { return [[[UIColor alloc] initWithRed:(248.0f/255.0f) green:(171.0f/255.0f) blue:(166.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ボルドー / 0x5f161d
+ (UIColor *)jpnJISBordeauxColor { return [[[UIColor alloc] initWithRed:(95.0f/255.0f) green:(22.0f/255.0f) blue:(29.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ベビーピンク / 0xfee3d7
+ (UIColor *)jpnJISBabyPinkColor { return [[[UIColor alloc] initWithRed:(254.0f/255.0f) green:(227.0f/255.0f) blue:(215.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ポピーレッド / 0xf04e58
+ (UIColor *)jpnJISPoppyRedColor { return [[[UIColor alloc] initWithRed:(240.0f/255.0f) green:(78.0f/255.0f) blue:(88.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 シグナルレッド / 0xef4050
+ (UIColor *)jpnJISSignalRedColor { return [[[UIColor alloc] initWithRed:(239.0f/255.0f) green:(64.0f/255.0f) blue:(80.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 カーマイン / 0xd71345
+ (UIColor *)jpnJISCarmineColor { return [[[UIColor alloc] initWithRed:(215.0f/255.0f) green:(19.0f/255.0f) blue:(69.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 レッド / 0xf15b5b
+ (UIColor *)jpnJISRedColor { return [[[UIColor alloc] initWithRed:(241.0f/255.0f) green:(91.0f/255.0f) blue:(91.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 トマトレッド / 0xf15b55
+ (UIColor *)jpnJISTomatoRedColor { return [[[UIColor alloc] initWithRed:(241.0f/255.0f) green:(91.0f/255.0f) blue:(85.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 マルーン / 0x691c1c
+ (UIColor *)jpnJISMaroonColor { return [[[UIColor alloc] initWithRed:(105.0f/255.0f) green:(28.0f/255.0f) blue:(28.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 バーミリオン / 0xf26649
+ (UIColor *)jpnJISVermilionColor { return [[[UIColor alloc] initWithRed:(242.0f/255.0f) green:(102.0f/255.0f) blue:(73.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 スカーレット / 0xf15b47
+ (UIColor *)jpnJISScarletColor { return [[[UIColor alloc] initWithRed:(241.0f/255.0f) green:(91.0f/255.0f) blue:(71.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 テラコッタ / 0xb66655
+ (UIColor *)jpnJISTerracottaColor { return [[[UIColor alloc] initWithRed:(182.0f/255.0f) green:(102.0f/255.0f) blue:(85.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 サーモンピンク / 0xf9aa8f
+ (UIColor *)jpnJISSalmonPinkColor { return [[[UIColor alloc] initWithRed:(249.0f/255.0f) green:(170.0f/255.0f) blue:(143.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 シェルピンク / 0xfdddcd
+ (UIColor *)jpnJISShellPinkColor { return [[[UIColor alloc] initWithRed:(253.0f/255.0f) green:(221.0f/255.0f) blue:(205.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ネールピンク / 0xfddac5
+ (UIColor *)jpnJISNailPinkColor { return [[[UIColor alloc] initWithRed:(253.0f/255.0f) green:(218.0f/255.0f) blue:(197.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 チャイニーズレッド / 0xf47a4d
+ (UIColor *)jpnJISChineseRedColor { return [[[UIColor alloc] initWithRed:(244.0f/255.0f) green:(122.0f/255.0f) blue:(77.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 キャロットオレンジ / 0xdd6b3d
+ (UIColor *)jpnJISCarrotOrangeColor { return [[[UIColor alloc] initWithRed:(221.0f/255.0f) green:(107.0f/255.0f) blue:(61.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 バーントシェンナ / 0xab5239
+ (UIColor *)jpnJISBurntSiennaColor { return [[[UIColor alloc] initWithRed:(171.0f/255.0f) green:(82.0f/255.0f) blue:(57.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 チョコレート / 0x602d1d
+ (UIColor *)jpnJISChocolateColor { return [[[UIColor alloc] initWithRed:(96.0f/255.0f) green:(45.0f/255.0f) blue:(29.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ココアブラウン / 0x875647
+ (UIColor *)jpnJISCocoaBrownColor { return [[[UIColor alloc] initWithRed:(135.0f/255.0f) green:(86.0f/255.0f) blue:(71.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ピーチ / 0xfdd1b0
+ (UIColor *)jpnJISPeachColor { return [[[UIColor alloc] initWithRed:(253.0f/255.0f) green:(209.0f/255.0f) blue:(176.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ローシェンナ / 0xd57a3d
+ (UIColor *)jpnJISRawSiennaColor { return [[[UIColor alloc] initWithRed:(213.0f/255.0f) green:(122.0f/255.0f) blue:(61.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 オレンジ / 0xf58220
+ (UIColor *)jpnJISOrangeColor { return [[[UIColor alloc] initWithRed:(245.0f/255.0f) green:(130.0f/255.0f) blue:(32.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ブラウン / 0x875c44
+ (UIColor *)jpnJISBrownColor { return [[[UIColor alloc] initWithRed:(135.0f/255.0f) green:(92.0f/255.0f) blue:(68.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 アプリコット / 0xfab280
+ (UIColor *)jpnJISApricotColor { return [[[UIColor alloc] initWithRed:(250.0f/255.0f) green:(178.0f/255.0f) blue:(128.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 タン / 0xb87644
+ (UIColor *)jpnJISTanColor { return [[[UIColor alloc] initWithRed:(184.0f/255.0f) green:(118.0f/255.0f) blue:(68.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 マンダリンオレンジ / 0xed9e31
+ (UIColor *)jpnJISMandarinOrangeColor { return [[[UIColor alloc] initWithRed:(237.0f/255.0f) green:(158.0f/255.0f) blue:(49.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 コルク / 0xba8d65
+ (UIColor *)jpnJISCorkColor { return [[[UIColor alloc] initWithRed:(186.0f/255.0f) green:(141.0f/255.0f) blue:(101.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 エクルベージュ / 0xf4e0c4
+ (UIColor *)jpnJISEcruBeigeColor { return [[[UIColor alloc] initWithRed:(244.0f/255.0f) green:(224.0f/255.0f) blue:(196.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ゴールデンイエロー / 0xfbb161
+ (UIColor *)jpnJISGoldenYellowColor { return [[[UIColor alloc] initWithRed:(251.0f/255.0f) green:(177.0f/255.0f) blue:(97.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 マリーゴールド / 0xf79428
+ (UIColor *)jpnJISMarigoldColor { return [[[UIColor alloc] initWithRed:(247.0f/255.0f) green:(148.0f/255.0f) blue:(40.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 バフ / 0xc69e6e
+ (UIColor *)jpnJISBuffColor { return [[[UIColor alloc] initWithRed:(198.0f/255.0f) green:(158.0f/255.0f) blue:(110.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 アンバー / 0xb97e54
+ (UIColor *)jpnJISAmberColor { return [[[UIColor alloc] initWithRed:(185.0f/255.0f) green:(126.0f/255.0f) blue:(84.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ブロンズ / 0x9a6229
+ (UIColor *)jpnJISBronzeColor { return [[[UIColor alloc] initWithRed:(154.0f/255.0f) green:(98.0f/255.0f) blue:(41.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ベージュ / 0xe7d0a9
+ (UIColor *)jpnJISBeigeColor { return [[[UIColor alloc] initWithRed:(231.0f/255.0f) green:(208.0f/255.0f) blue:(169.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 イエローオーカー / 0xbb8b38
+ (UIColor *)jpnJISYellowOcherColor { return [[[UIColor alloc] initWithRed:(187.0f/255.0f) green:(139.0f/255.0f) blue:(56.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 バーントアンバー / 0x76573c
+ (UIColor *)jpnJISBurntUmberColor { return [[[UIColor alloc] initWithRed:(118.0f/255.0f) green:(87.0f/255.0f) blue:(60.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 セピア / 0x6b4a2b
+ (UIColor *)jpnJISSepiaColor { return [[[UIColor alloc] initWithRed:(107.0f/255.0f) green:(74.0f/255.0f) blue:(43.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 カーキ / 0xb18b55
+ (UIColor *)jpnJISKhakiColor { return [[[UIColor alloc] initWithRed:(177.0f/255.0f) green:(139.0f/255.0f) blue:(85.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ブロンド / 0xf3d18a
+ (UIColor *)jpnJISBlondColor { return [[[UIColor alloc] initWithRed:(243.0f/255.0f) green:(209.0f/255.0f) blue:(138.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ネープルスイエロー / 0xffd167
+ (UIColor *)jpnJISNaplesYellowColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(209.0f/255.0f) blue:(103.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 レグホーン / 0xffe8af
+ (UIColor *)jpnJISLeghornColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(232.0f/255.0f) blue:(175.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ローアンバー / 0x89652b
+ (UIColor *)jpnJISRawUmberColor { return [[[UIColor alloc] initWithRed:(137.0f/255.0f) green:(101.0f/255.0f) blue:(43.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 クロムイエロー / 0xffcb05
+ (UIColor *)jpnJISChromeYellowColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(203.0f/255.0f) blue:(5.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 イエロー / 0xffd800
+ (UIColor *)jpnJISYellowColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(216.0f/255.0f) blue:(0.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 クリームイエロー / 0xffedb3
+ (UIColor *)jpnJISCreamYellowColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(237.0f/255.0f) blue:(179.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ジョンブリアン / 0xffd800
+ (UIColor *)jpnJISJauneBrillantColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(216.0f/255.0f) blue:(0.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 カナリーイエロー / 0xffef6c
+ (UIColor *)jpnJISCanaryYellowColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(239.0f/255.0f) blue:(108.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 オリーブドラブ / 0x6e6339
+ (UIColor *)jpnJISOliveDrabColor { return [[[UIColor alloc] initWithRed:(110.0f/255.0f) green:(99.0f/255.0f) blue:(57.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 オリーブ / 0x6d5f1a
+ (UIColor *)jpnJISOliveColor { return [[[UIColor alloc] initWithRed:(109.0f/255.0f) green:(95.0f/255.0f) blue:(26.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 レモンイエロー / 0xfff450
+ (UIColor *)jpnJISLemonYellowColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(244.0f/255.0f) blue:(80.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 オリーブグリーン / 0x576128
+ (UIColor *)jpnJISOliveGreenColor { return [[[UIColor alloc] initWithRed:(87.0f/255.0f) green:(97.0f/255.0f) blue:(40.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 シャトルーズグリーン / 0xd3e173
+ (UIColor *)jpnJISChartreuseGreenColor { return [[[UIColor alloc] initWithRed:(211.0f/255.0f) green:(225.0f/255.0f) blue:(115.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 リーフグリーン / 0x91ba58
+ (UIColor *)jpnJISLeafGreenColor { return [[[UIColor alloc] initWithRed:(145.0f/255.0f) green:(186.0f/255.0f) blue:(88.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 グラスグリーン / 0x6d8346
+ (UIColor *)jpnJISGrassGreenColor { return [[[UIColor alloc] initWithRed:(109.0f/255.0f) green:(131.0f/255.0f) blue:(70.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 アイビーグリーン / 0x487c38
+ (UIColor *)jpnJISIvyGreenColor { return [[[UIColor alloc] initWithRed:(72.0f/255.0f) green:(124.0f/255.0f) blue:(56.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 アップルグリーン / 0x96c78c
+ (UIColor *)jpnJISAppleGreenColor { return [[[UIColor alloc] initWithRed:(150.0f/255.0f) green:(199.0f/255.0f) blue:(140.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ミントグリーン / 0x90ce9c
+ (UIColor *)jpnJISMintGreenColor { return [[[UIColor alloc] initWithRed:(144.0f/255.0f) green:(206.0f/255.0f) blue:(156.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 グリーン / 0x00b16b
+ (UIColor *)jpnJISGreenColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(177.0f/255.0f) blue:(107.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 コバルトグリーン / 0x40ba8d
+ (UIColor *)jpnJISCobaltGreenColor { return [[[UIColor alloc] initWithRed:(64.0f/255.0f) green:(186.0f/255.0f) blue:(141.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 エメラルドグリーン / 0x00b379
+ (UIColor *)jpnJISEmeraldGreenColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(179.0f/255.0f) blue:(121.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 マラカイトグリーン / 0x009d5b
+ (UIColor *)jpnJISMalachiteGreenColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(157.0f/255.0f) blue:(91.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ボトルグリーン / 0x005739
+ (UIColor *)jpnJISBottleGreenColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(87.0f/255.0f) blue:(57.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 フォレストグリーン / 0x26896d
+ (UIColor *)jpnJISForestGreenColor { return [[[UIColor alloc] initWithRed:(38.0f/255.0f) green:(137.0f/255.0f) blue:(109.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ビリジアン / 0x00896b
+ (UIColor *)jpnJISViridianColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(137.0f/255.0f) blue:(107.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ビリヤードグリーン / 0x005d4d
+ (UIColor *)jpnJISBilliardGreenColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(93.0f/255.0f) blue:(77.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 シーグリーン / 0x8ac75a
+ (UIColor *)jpnJISSeaGreenColor { return [[[UIColor alloc] initWithRed:(138.0f/255.0f) green:(199.0f/255.0f) blue:(90.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ピーコックグリーン / 0x00ae9d
+ (UIColor *)jpnJISPeacockGreenColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(174.0f/255.0f) blue:(157.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ナイルブルー / 0x279e91
+ (UIColor *)jpnJISNileBlueColor { return [[[UIColor alloc] initWithRed:(39.0f/255.0f) green:(158.0f/255.0f) blue:(145.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ピーコックブルー / 0x00a2a4
+ (UIColor *)jpnJISPeacockBlueColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(162.0f/255.0f) blue:(164.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ターコイズブルー / 0x00b7ce
+ (UIColor *)jpnJISTurquoiseBlueColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(183.0f/255.0f) blue:(206.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 マリンブルー / 0x006881
+ (UIColor *)jpnJISMarineBlueColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(104.0f/255.0f) blue:(129.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ホリゾンブルー / 0x92d7e7
+ (UIColor *)jpnJISHorizonBlueColor { return [[[UIColor alloc] initWithRed:(146.0f/255.0f) green:(215.0f/255.0f) blue:(231.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 シアン / 0x00aeef
+ (UIColor *)jpnJISCyanColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(174.0f/255.0f) blue:(239.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 スカイブルー / 0x90d7ec
+ (UIColor *)jpnJISSkyBlueColor { return [[[UIColor alloc] initWithRed:(144.0f/255.0f) green:(215.0f/255.0f) blue:(236.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 セルリアンブルー / 0x008caf
+ (UIColor *)jpnJISCeruleanBlueColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(140.0f/255.0f) blue:(175.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ベビーブルー / 0xade0ee
+ (UIColor *)jpnJISBabyBlueColor { return [[[UIColor alloc] initWithRed:(173.0f/255.0f) green:(224.0f/255.0f) blue:(238.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 サックスブルー / 0x2e87a1
+ (UIColor *)jpnJISSaxeBlueColor { return [[[UIColor alloc] initWithRed:(46.0f/255.0f) green:(135.0f/255.0f) blue:(161.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ブルー / 0x007dc5
+ (UIColor *)jpnJISBlueColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(125.0f/255.0f) blue:(197.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 コバルトブルー / 0x0072bc
+ (UIColor *)jpnJISCobaltBlueColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(114.0f/255.0f) blue:(188.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 アイアンブルー / 0x1a4472
+ (UIColor *)jpnJISIronBlueColor { return [[[UIColor alloc] initWithRed:(26.0f/255.0f) green:(68.0f/255.0f) blue:(114.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 プルシアンブルー / 0x1a4472
+ (UIColor *)jpnJISPrussianBlueColor { return [[[UIColor alloc] initWithRed:(26.0f/255.0f) green:(68.0f/255.0f) blue:(114.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ミッドナイトブルー / 0x001f43
+ (UIColor *)jpnJISMidnightBlueColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(31.0f/255.0f) blue:(67.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ヒヤシンス / 0x659ad2
+ (UIColor *)jpnJISHyacinthColor { return [[[UIColor alloc] initWithRed:(101.0f/255.0f) green:(154.0f/255.0f) blue:(210.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ネイビーブルー / 0x1f2f54
+ (UIColor *)jpnJISNavyBlueColor { return [[[UIColor alloc] initWithRed:(31.0f/255.0f) green:(47.0f/255.0f) blue:(84.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ウルトラマリン / 0x465daa
+ (UIColor *)jpnJISUltramarineBlueColor { return [[[UIColor alloc] initWithRed:(70.0f/255.0f) green:(93.0f/255.0f) blue:(170.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 オリエンタルブルー / 0x3155a6
+ (UIColor *)jpnJISOrientalBlueColor { return [[[UIColor alloc] initWithRed:(49.0f/255.0f) green:(85.0f/255.0f) blue:(166.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ウィスタリア / 0x8689c3
+ (UIColor *)jpnJISWistariaColor { return [[[UIColor alloc] initWithRed:(134.0f/255.0f) green:(137.0f/255.0f) blue:(195.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 パンジー / 0x583f99
+ (UIColor *)jpnJISPansyColor { return [[[UIColor alloc] initWithRed:(88.0f/255.0f) green:(63.0f/255.0f) blue:(153.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ヘリオトロープ / 0x8a77b7
+ (UIColor *)jpnJISHeliotropeColor { return [[[UIColor alloc] initWithRed:(138.0f/255.0f) green:(119.0f/255.0f) blue:(183.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 バイオレット / 0x7159a6
+ (UIColor *)jpnJISVioletColor { return [[[UIColor alloc] initWithRed:(113.0f/255.0f) green:(89.0f/255.0f) blue:(166.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ラベンダー / 0xb7a8cc
+ (UIColor *)jpnJISLavenderColor { return [[[UIColor alloc] initWithRed:(183.0f/255.0f) green:(168.0f/255.0f) blue:(204.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 モーブ / 0x8d64aa
+ (UIColor *)jpnJISMauveColor { return [[[UIColor alloc] initWithRed:(141.0f/255.0f) green:(100.0f/255.0f) blue:(170.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ライラック / 0xc7b2d6
+ (UIColor *)jpnJISLilacColor { return [[[UIColor alloc] initWithRed:(199.0f/255.0f) green:(178.0f/255.0f) blue:(214.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 オーキッド / 0xd2a3cb
+ (UIColor *)jpnJISOechidColor { return [[[UIColor alloc] initWithRed:(210.0f/255.0f) green:(163.0f/255.0f) blue:(203.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 パープル / 0x956daf
+ (UIColor *)jpnJISPurpleColor { return [[[UIColor alloc] initWithRed:(149.0f/255.0f) green:(109.0f/255.0f) blue:(175.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 マゼンタ / 0xec008c
+ (UIColor *)jpnJISMagentaColor { return [[[UIColor alloc] initWithRed:(236.0f/255.0f) green:(0.0f/255.0f) blue:(140.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 チェリーピンク / 0xf172a3
+ (UIColor *)jpnJISCherryPinkColor { return [[[UIColor alloc] initWithRed:(241.0f/255.0f) green:(114.0f/255.0f) blue:(163.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ホワイト / 0xfffffb
+ (UIColor *)jpnJISWhiteColor { return [[[UIColor alloc] initWithRed:(255.0f/255.0f) green:(255.0f/255.0f) blue:(251.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 スノーホワイト / 0xf4fbfe
+ (UIColor *)jpnJISSnowWhiteColor { return [[[UIColor alloc] initWithRed:(244.0f/255.0f) green:(251.0f/255.0f) blue:(254.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 アイボリー / 0xf3ecd8
+ (UIColor *)jpnJISIvoryColor { return [[[UIColor alloc] initWithRed:(243.0f/255.0f) green:(236.0f/255.0f) blue:(216.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 スカイグレイ / 0xbfc5ca
+ (UIColor *)jpnJISSkyGreyColor { return [[[UIColor alloc] initWithRed:(191.0f/255.0f) green:(197.0f/255.0f) blue:(202.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 パールグレイ / 0xbdbdb7
+ (UIColor *)jpnJISPearlGreyColor { return [[[UIColor alloc] initWithRed:(189.0f/255.0f) green:(189.0f/255.0f) blue:(183.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 シルバーグレイ / 0xa1a3a6
+ (UIColor *)jpnJISSilverGreyColor { return [[[UIColor alloc] initWithRed:(161.0f/255.0f) green:(163.0f/255.0f) blue:(166.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 アッシュグレイ / 0x949593
+ (UIColor *)jpnJISAshGreyColor { return [[[UIColor alloc] initWithRed:(148.0f/255.0f) green:(149.0f/255.0f) blue:(147.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ローズグレイ / 0x948779
+ (UIColor *)jpnJISRoseGreyColor { return [[[UIColor alloc] initWithRed:(148.0f/255.0f) green:(135.0f/255.0f) blue:(121.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 グレイ / 0x77787b
+ (UIColor *)jpnJISGreyColor { return [[[UIColor alloc] initWithRed:(119.0f/255.0f) green:(120.0f/255.0f) blue:(123.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 スチールグレイ / 0x6c676e
+ (UIColor *)jpnJISSteelGreyColor { return [[[UIColor alloc] initWithRed:(108.0f/255.0f) green:(103.0f/255.0f) blue:(110.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 スレートグレイ / 0x5d5d63
+ (UIColor *)jpnJISSlateGreyColor { return [[[UIColor alloc] initWithRed:(93.0f/255.0f) green:(93.0f/255.0f) blue:(99.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 チャコールグレイ / 0x4c444d
+ (UIColor *)jpnJISCharcoalGreyColor { return [[[UIColor alloc] initWithRed:(76.0f/255.0f) green:(68.0f/255.0f) blue:(77.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ランプブラック / 0x221816
+ (UIColor *)jpnJISLampBlackColor { return [[[UIColor alloc] initWithRed:(34.0f/255.0f) green:(24.0f/255.0f) blue:(22.0f/255.0f) alpha:1.0f] autorelease]; }
// JIS慣用色名 ブラック / 0x0d0116
+ (UIColor *)jpnJISBlackColor { return [[[UIColor alloc] initWithRed:(13.0f/255.0f) green:(1.0f/255.0f) blue:(22.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 桜色 / 0xfef4f4
+ (UIColor *)jpnSakuraIroColor { return [[[UIColor alloc] initWithRed:(254.0f/255.0f) green:(244.0f/255.0f) blue:(244.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 小豆色 / 0x96514d
+ (UIColor *)jpnAzukiIroColor { return [[[UIColor alloc] initWithRed:(150.0f/255.0f) green:(81.0f/255.0f) blue:(77.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 黄金 / 0xe6b422
+ (UIColor *)jpnKoganeColor { return [[[UIColor alloc] initWithRed:(230.0f/255.0f) green:(180.0f/255.0f) blue:(34.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 萌葱色 / 0x006e54
+ (UIColor *)jpnMoegiIroColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(110.0f/255.0f) blue:(84.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 古代紫 / 0x895b8a
+ (UIColor *)jpnKodaimurasakiColor { return [[[UIColor alloc] initWithRed:(137.0f/255.0f) green:(91.0f/255.0f) blue:(138.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 薄桜 / 0xfdeff2
+ (UIColor *)jpnUsuzakuraColor { return [[[UIColor alloc] initWithRed:(253.0f/255.0f) green:(239.0f/255.0f) blue:(242.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 枯茶 / 0x8d6449
+ (UIColor *)jpnKarachaColor { return [[[UIColor alloc] initWithRed:(141.0f/255.0f) green:(100.0f/255.0f) blue:(73.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 櫨染 / 0xd9a62e
+ (UIColor *)jpnHajizomeColor { return [[[UIColor alloc] initWithRed:(217.0f/255.0f) green:(166.0f/255.0f) blue:(46.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 花緑青 / 0x00a381
+ (UIColor *)jpnHanarokushouColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(163.0f/255.0f) blue:(129.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 茄子紺 / 0x824880
+ (UIColor *)jpnNasukonColor { return [[[UIColor alloc] initWithRed:(130.0f/255.0f) green:(72.0f/255.0f) blue:(128.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 桜鼠 / 0xe9dfe5
+ (UIColor *)jpnSakuranezuColor { return [[[UIColor alloc] initWithRed:(233.0f/255.0f) green:(223.0f/255.0f) blue:(229.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 飴色 / 0xdeb068
+ (UIColor *)jpnAmeIroColor { return [[[UIColor alloc] initWithRed:(222.0f/255.0f) green:(176.0f/255.0f) blue:(104.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 黄朽葉色 / 0xd3a243
+ (UIColor *)jpnKikuchibaIroColor { return [[[UIColor alloc] initWithRed:(211.0f/255.0f) green:(162.0f/255.0f) blue:(67.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 翡翠色 / 0x38b48b
+ (UIColor *)jpnHisuiIroColor { return [[[UIColor alloc] initWithRed:(56.0f/255.0f) green:(180.0f/255.0f) blue:(139.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 二藍 / 0x915c8b
+ (UIColor *)jpnFutaaiColor { return [[[UIColor alloc] initWithRed:(145.0f/255.0f) green:(92.0f/255.0f) blue:(139.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 鴇鼠 / 0xe4d2d8
+ (UIColor *)jpnTokinezuColor { return [[[UIColor alloc] initWithRed:(228.0f/255.0f) green:(210.0f/255.0f) blue:(216.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 駱駝色 / 0xbf794e
+ (UIColor *)jpnRakudaIroColor { return [[[UIColor alloc] initWithRed:(191.0f/255.0f) green:(121.0f/255.0f) blue:(78.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 山吹茶 / 0xc89932
+ (UIColor *)jpnYamabukichaColor { return [[[UIColor alloc] initWithRed:(200.0f/255.0f) green:(153.0f/255.0f) blue:(50.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 青緑 / 0x00a497
+ (UIColor *)jpnAomidoriColor { return [[[UIColor alloc] initWithRed:(0.0f/255.0f) green:(164.0f/255.0f) blue:(151.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 京紫 / 0x9d5b8b
+ (UIColor *)jpnKyoumurasakiColor { return [[[UIColor alloc] initWithRed:(157.0f/255.0f) green:(91.0f/255.0f) blue:(139.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 虹色 / 0xf6bfbc
+ (UIColor *)jpnNijiIroColor { return [[[UIColor alloc] initWithRed:(246.0f/255.0f) green:(191.0f/255.0f) blue:(188.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 土色 / 0xbc763c
+ (UIColor *)jpnTsuchiIroColor { return [[[UIColor alloc] initWithRed:(188.0f/255.0f) green:(118.0f/255.0f) blue:(60.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 芥子色 / 0xd0af4c
+ (UIColor *)jpnKarashiIroColor { return [[[UIColor alloc] initWithRed:(208.0f/255.0f) green:(175.0f/255.0f) blue:(76.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 水浅葱 / 0x80aba9
+ (UIColor *)jpnMizuasagiColor { return [[[UIColor alloc] initWithRed:(128.0f/255.0f) green:(171.0f/255.0f) blue:(169.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 蒲葡 / 0x7a4171
+ (UIColor *)jpnEbizomeColor { return [[[UIColor alloc] initWithRed:(122.0f/255.0f) green:(65.0f/255.0f) blue:(113.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 珊瑚色 / 0xf5b1aa
+ (UIColor *)jpnSangoIroColor { return [[[UIColor alloc] initWithRed:(245.0f/255.0f) green:(177.0f/255.0f) blue:(170.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 黄唐茶 / 0xb98c46
+ (UIColor *)jpnKigarachaColor { return [[[UIColor alloc] initWithRed:(185.0f/255.0f) green:(140.0f/255.0f) blue:(70.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 豆がら茶 / 0x8b968d
+ (UIColor *)jpnMamegarachaColor { return [[[UIColor alloc] initWithRed:(139.0f/255.0f) green:(150.0f/255.0f) blue:(141.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 錆浅葱 / 0x5c9291
+ (UIColor *)jpnSabiasagiColor { return [[[UIColor alloc] initWithRed:(92.0f/255.0f) green:(146.0f/255.0f) blue:(145.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 若紫 / 0xbc64a4
+ (UIColor *)jpnWakamurasakiColor { return [[[UIColor alloc] initWithRed:(188.0f/255.0f) green:(100.0f/255.0f) blue:(164.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 一斤染 / 0xf5b199
+ (UIColor *)jpnIkkonzomeColor { return [[[UIColor alloc] initWithRed:(245.0f/255.0f) green:(177.0f/255.0f) blue:(153.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 桑染 / 0xb79b5b
+ (UIColor *)jpnKuwazomeColor { return [[[UIColor alloc] initWithRed:(183.0f/255.0f) green:(155.0f/255.0f) blue:(91.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 麹塵 / 0x6e7955
+ (UIColor *)jpnKikujinColor { return [[[UIColor alloc] initWithRed:(110.0f/255.0f) green:(121.0f/255.0f) blue:(85.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 青碧 / 0x478384
+ (UIColor *)jpnSeihekiColor { return [[[UIColor alloc] initWithRed:(71.0f/255.0f) green:(131.0f/255.0f) blue:(132.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 紅紫 / 0xb44c97
+ (UIColor *)jpnBenimurasakiColor { return [[[UIColor alloc] initWithRed:(180.0f/255.0f) green:(76.0f/255.0f) blue:(151.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 宍色 / 0xefab93
+ (UIColor *)jpnShishiIroColor { return [[[UIColor alloc] initWithRed:(239.0f/255.0f) green:(171.0f/255.0f) blue:(147.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 櫨色 / 0xb77b57
+ (UIColor *)jpnHajiIroColor { return [[[UIColor alloc] initWithRed:(183.0f/255.0f) green:(123.0f/255.0f) blue:(87.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 山鳩色 / 0x767c6b
+ (UIColor *)jpnYamabatoIroColor { return [[[UIColor alloc] initWithRed:(118.0f/255.0f) green:(124.0f/255.0f) blue:(107.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 御召茶 / 0x43676b
+ (UIColor *)jpnOmeshichaColor { return [[[UIColor alloc] initWithRed:(67.0f/255.0f) green:(103.0f/255.0f) blue:(107.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 梅紫 / 0xaa4c8f
+ (UIColor *)jpnUmemurasakiColor { return [[[UIColor alloc] initWithRed:(170.0f/255.0f) green:(76.0f/255.0f) blue:(143.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 紅梅色 / 0xf2a0a1
+ (UIColor *)jpnKoubaiIroColor { return [[[UIColor alloc] initWithRed:(242.0f/255.0f) green:(160.0f/255.0f) blue:(161.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 黄橡 / 0xb68d4c
+ (UIColor *)jpnKitsurubamiColor { return [[[UIColor alloc] initWithRed:(182.0f/255.0f) green:(141.0f/255.0f) blue:(76.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 利休鼠 / 0x888e7e
+ (UIColor *)jpnRikyuunezumiColor { return [[[UIColor alloc] initWithRed:(136.0f/255.0f) green:(142.0f/255.0f) blue:(126.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 湊鼠 / 0x80989b
+ (UIColor *)jpnMinatonezumiColor { return [[[UIColor alloc] initWithRed:(128.0f/255.0f) green:(152.0f/255.0f) blue:(155.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 菖蒲色 / 0xcc7eb1
+ (UIColor *)jpnAyameIroColor { return [[[UIColor alloc] initWithRed:(204.0f/255.0f) green:(126.0f/255.0f) blue:(177.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 薄紅 / 0xf0908d
+ (UIColor *)jpnUsubeniColor { return [[[UIColor alloc] initWithRed:(240.0f/255.0f) green:(144.0f/255.0f) blue:(141.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 丁字染 / 0xad7d4c
+ (UIColor *)jpnTyoujizomeColor { return [[[UIColor alloc] initWithRed:(173.0f/255.0f) green:(125.0f/255.0f) blue:(76.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 海松茶 / 0x5a544b
+ (UIColor *)jpnMiruchaColor { return [[[UIColor alloc] initWithRed:(90.0f/255.0f) green:(84.0f/255.0f) blue:(75.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 高麗納戸 / 0x2c4f54
+ (UIColor *)jpnKourainandoColor { return [[[UIColor alloc] initWithRed:(44.0f/255.0f) green:(79.0f/255.0f) blue:(84.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 紅藤色 / 0xcca6bf
+ (UIColor *)jpnBenifujiIroColor { return [[[UIColor alloc] initWithRed:(204.0f/255.0f) green:(166.0f/255.0f) blue:(191.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 甚三紅 / 0xee827c
+ (UIColor *)jpnJinzamomiColor { return [[[UIColor alloc] initWithRed:(238.0f/255.0f) green:(130.0f/255.0f) blue:(124.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 香染 / 0xad7d4c
+ (UIColor *)jpnKouzomeColor { return [[[UIColor alloc] initWithRed:(173.0f/255.0f) green:(125.0f/255.0f) blue:(76.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 藍海松茶 / 0x56564b
+ (UIColor *)jpnAimiruchaColor { return [[[UIColor alloc] initWithRed:(86.0f/255.0f) green:(86.0f/255.0f) blue:(75.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 百入茶 / 0x1f3134
+ (UIColor *)jpnMomoshiochaColor { return [[[UIColor alloc] initWithRed:(31.0f/255.0f) green:(49.0f/255.0f) blue:(52.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 浅紫 / 0xc4a3bf
+ (UIColor *)jpnAsamurasakiColor { return [[[UIColor alloc] initWithRed:(196.0f/255.0f) green:(163.0f/255.0f) blue:(191.0f/255.0f) alpha:1.0f] autorelease]; }
// 和色名 桃色 / 0xf09199
+ (UIColor *)jpnMomoIroColor { return [[[UIColor alloc] initWithRed:(240.0f/255.0f) green:(145.0f/255.0f) blue:(153.0f/255.0f) alpha:1.0f] autorelease]; }