pyembroidery/pyembroidery/EmbThreadJef.py

96 wiersze
4.4 KiB
Python

from .EmbThread import EmbThread
def get_thread_set():
return [
None, # EmbThreadJef(0x000000, "Placeholder", "000"),
EmbThreadJef(0x000000, "Black", "002"),
EmbThreadJef(0xFFFFFF, "White", "001"),
EmbThreadJef(0xFFFF17, "Yellow", "204"),
EmbThreadJef(0xFF6600, "Orange", "203"),
EmbThreadJef(0x2F5933, "Olive Green", "219"),
EmbThreadJef(0x237336, "Green", "226"),
EmbThreadJef(0x65C2C8, "Sky", "217"),
EmbThreadJef(0xAB5A96, "Purple", "208"),
EmbThreadJef(0xF669A0, "Pink", "201"),
EmbThreadJef(0xFF0000, "Red", "225"),
EmbThreadJef(0xB1704E, "Brown", "214"),
EmbThreadJef(0x0B2F84, "Blue", "207"),
EmbThreadJef(0xE4C35D, "Gold", "003"),
EmbThreadJef(0x481A05, "Dark Brown", "205"),
EmbThreadJef(0xAC9CC7, "Pale Violet", "209"),
EmbThreadJef(0xFCF294, "Pale Yellow", "210"),
EmbThreadJef(0xF999B7, "Pale Pink", "211"),
EmbThreadJef(0xFAB381, "Peach", "212"),
EmbThreadJef(0xC9A480, "Beige", "213"),
EmbThreadJef(0x970533, "Wine Red", "215"),
EmbThreadJef(0xA0B8CC, "Pale Sky", "216"),
EmbThreadJef(0x7FC21C, "Yellow Green", "218"),
EmbThreadJef(0xE5E5E5, "Silver Gray", "220"),
EmbThreadJef(0x889B9B, "Gray", "221"),
EmbThreadJef(0x98D6BD, "Pale Aqua", "227"),
EmbThreadJef(0xB2E1E3, "Baby Blue", "228"),
EmbThreadJef(0x368BA0, "Powder Blue", "229"),
EmbThreadJef(0x4F83AB, "Bright Blue", "230"),
EmbThreadJef(0x386A91, "Slate Blue", "231"),
EmbThreadJef(0x071650, "Navy Blue", "232"),
EmbThreadJef(0xF999A2, "Salmon Pink", "233"),
EmbThreadJef(0xF9676B, "Coral", "234"),
EmbThreadJef(0xE3311F, "Burnt Orange", "235"),
EmbThreadJef(0xE2A188, "Cinnamon", "236"),
EmbThreadJef(0xB59474, "Umber", "237"),
EmbThreadJef(0xE4CF99, "Blond", "238"),
EmbThreadJef(0xFFCB00, "Sunflower", "239"),
EmbThreadJef(0xE1ADD4, "Orchid Pink", "240"),
EmbThreadJef(0xC3007E, "Peony Purple", "241"),
EmbThreadJef(0x80004B, "Burgundy", "242"),
EmbThreadJef(0x540571, "Royal Purple", "243"),
EmbThreadJef(0xB10525, "Cardinal Red", "244"),
EmbThreadJef(0xCAE0C0, "Opal Green", "245"),
EmbThreadJef(0x899856, "Moss Green", "246"),
EmbThreadJef(0x5C941A, "Meadow Green", "247"),
EmbThreadJef(0x003114, "Dark Green", "248"),
EmbThreadJef(0x5DAE94, "Aquamarine", "249"),
EmbThreadJef(0x4CBF8F, "Emerald Green", "250"),
EmbThreadJef(0x007772, "Peacock Green", "251"),
EmbThreadJef(0x595B61, "Dark Gray", "252"),
EmbThreadJef(0xFFFFF2, "Ivory White", "253"),
EmbThreadJef(0xB15818, "Hazel", "254"),
EmbThreadJef(0xCB8A07, "Toast", "255"),
EmbThreadJef(0x986C80, "Salmon", "256"),
EmbThreadJef(0x98692D, "Cocoa Brown", "257"),
EmbThreadJef(0x4D3419, "Sienna", "258"),
EmbThreadJef(0x4C330B, "Sepia", "259"),
EmbThreadJef(0x33200A, "Dark Sepia", "260"),
EmbThreadJef(0x523A97, "Violet Blue", "261"),
EmbThreadJef(0x0D217E, "Blue Ink", "262"),
EmbThreadJef(0x1E77AC, "Sola Blue", "263"),
EmbThreadJef(0xB2DD53, "Green Dust", "264"),
EmbThreadJef(0xF33689, "Crimson", "265"),
EmbThreadJef(0xDE649E, "Floral Pink", "266"),
EmbThreadJef(0x984161, "Wine", "267"),
EmbThreadJef(0x4C5612, "Olive Drab", "268"),
EmbThreadJef(0x4C881F, "Meadow", "269"),
EmbThreadJef(0xE4DE79, "Mustard", "270"),
EmbThreadJef(0xCB8A1A, "Yellow Ocher", "271"),
EmbThreadJef(0xCBA21C, "Old Gold", "272"),
EmbThreadJef(0xFF9805, "Honey Dew", "273"),
EmbThreadJef(0xFCB257, "Tangerine", "274"),
EmbThreadJef(0xFFE505, "Canary Yellow", "275"),
EmbThreadJef(0xF0331F, "Vermilion", "202"),
EmbThreadJef(0x1A842D, "Bright Green", "206"),
EmbThreadJef(0x386CAE, "Ocean Blue", "222"),
EmbThreadJef(0xE3C4B4, "Beige Gray", "223"),
EmbThreadJef(0xE3AC81, "Bamboo", "224"),
]
class EmbThreadJef(EmbThread):
def __init__(self, color, description, catalog_number):
EmbThread.__init__(self)
self.color = color
self.description = description
self.catalog_number = catalog_number
self.brand = "Jef"
self.chart = "Jef"