mirror of
https://github.com/wizbright/waybox.git
synced 2026-04-06 07:15:41 -04:00
renders some blackbox themes
This commit is contained in:
parent
93811898f0
commit
dbd2a51b42
168 changed files with 16082 additions and 2 deletions
766
include/waybox/rgb.h
Normal file
766
include/waybox/rgb.h
Normal file
|
|
@ -0,0 +1,766 @@
|
|||
#include <string.h>
|
||||
|
||||
typedef struct _colorEntry {
|
||||
int r;
|
||||
int g;
|
||||
int b;
|
||||
char *name;
|
||||
} colorEntry;
|
||||
|
||||
colorEntry colorTable[] = {
|
||||
{ 255, 250, 250, "snow" },
|
||||
{ 248, 248, 255, "ghost white" },
|
||||
{ 248, 248, 255, "GhostWhite" },
|
||||
{ 245, 245, 245, "white smoke" },
|
||||
{ 245, 245, 245, "WhiteSmoke" },
|
||||
{ 220, 220, 220, "gainsboro" },
|
||||
{ 255, 250, 240, "floral white" },
|
||||
{ 255, 250, 240, "FloralWhite" },
|
||||
{ 253, 245, 230, "old lace" },
|
||||
{ 253, 245, 230, "OldLace" },
|
||||
{ 250, 240, 230, "linen" },
|
||||
{ 250, 235, 215, "antique white" },
|
||||
{ 250, 235, 215, "AntiqueWhite" },
|
||||
{ 255, 239, 213, "papaya whip" },
|
||||
{ 255, 239, 213, "PapayaWhip" },
|
||||
{ 255, 235, 205, "blanched almond" },
|
||||
{ 255, 235, 205, "BlanchedAlmond" },
|
||||
{ 255, 228, 196, "bisque" },
|
||||
{ 255, 218, 185, "peach puff" },
|
||||
{ 255, 218, 185, "PeachPuff" },
|
||||
{ 255, 222, 173, "navajo white" },
|
||||
{ 255, 222, 173, "NavajoWhite" },
|
||||
{ 255, 228, 181, "moccasin" },
|
||||
{ 255, 248, 220, "cornsilk" },
|
||||
{ 255, 255, 240, "ivory" },
|
||||
{ 255, 250, 205, "lemon chiffon" },
|
||||
{ 255, 250, 205, "LemonChiffon" },
|
||||
{ 255, 245, 238, "seashell" },
|
||||
{ 240, 255, 240, "honeydew" },
|
||||
{ 245, 255, 250, "mint cream" },
|
||||
{ 245, 255, 250, "MintCream" },
|
||||
{ 240, 255, 255, "azure" },
|
||||
{ 240, 248, 255, "alice blue" },
|
||||
{ 240, 248, 255, "AliceBlue" },
|
||||
{ 230, 230, 250, "lavender" },
|
||||
{ 255, 240, 245, "lavender blush" },
|
||||
{ 255, 240, 245, "LavenderBlush" },
|
||||
{ 255, 228, 225, "misty rose" },
|
||||
{ 255, 228, 225, "MistyRose" },
|
||||
{ 255, 255, 255, "white" },
|
||||
{ 0, 0, 0, "black" },
|
||||
{ 47, 79, 79, "dark slate gray" },
|
||||
{ 47, 79, 79, "DarkSlateGray" },
|
||||
{ 47, 79, 79, "dark slate grey" },
|
||||
{ 47, 79, 79, "DarkSlateGrey" },
|
||||
{ 105, 105, 105, "dim gray" },
|
||||
{ 105, 105, 105, "DimGray" },
|
||||
{ 105, 105, 105, "dim grey" },
|
||||
{ 105, 105, 105, "DimGrey" },
|
||||
{ 112, 128, 144, "slate gray" },
|
||||
{ 112, 128, 144, "SlateGray" },
|
||||
{ 112, 128, 144, "slate grey" },
|
||||
{ 112, 128, 144, "SlateGrey" },
|
||||
{ 119, 136, 153, "light slate gray" },
|
||||
{ 119, 136, 153, "LightSlateGray" },
|
||||
{ 119, 136, 153, "light slate grey" },
|
||||
{ 119, 136, 153, "LightSlateGrey" },
|
||||
{ 190, 190, 190, "gray" },
|
||||
{ 190, 190, 190, "grey" },
|
||||
{ 211, 211, 211, "light grey" },
|
||||
{ 211, 211, 211, "LightGrey" },
|
||||
{ 211, 211, 211, "light gray" },
|
||||
{ 211, 211, 211, "LightGray" },
|
||||
{ 25, 25, 112, "midnight blue" },
|
||||
{ 25, 25, 112, "MidnightBlue" },
|
||||
{ 0, 0, 128, "navy" },
|
||||
{ 0, 0, 128, "navy blue" },
|
||||
{ 0, 0, 128, "NavyBlue" },
|
||||
{ 100, 149, 237, "cornflower blue" },
|
||||
{ 100, 149, 237, "CornflowerBlue" },
|
||||
{ 72, 61, 139, "dark slate blue" },
|
||||
{ 72, 61, 139, "DarkSlateBlue" },
|
||||
{ 106, 90, 205, "slate blue" },
|
||||
{ 106, 90, 205, "SlateBlue" },
|
||||
{ 123, 104, 238, "medium slate blue" },
|
||||
{ 123, 104, 238, "MediumSlateBlue" },
|
||||
{ 132, 112, 255, "light slate blue" },
|
||||
{ 132, 112, 255, "LightSlateBlue" },
|
||||
{ 0, 0, 205, "medium blue" },
|
||||
{ 0, 0, 205, "MediumBlue" },
|
||||
{ 65, 105, 225, "royal blue" },
|
||||
{ 65, 105, 225, "RoyalBlue" },
|
||||
{ 0, 0, 255, "blue" },
|
||||
{ 30, 144, 255, "dodger blue" },
|
||||
{ 30, 144, 255, "DodgerBlue" },
|
||||
{ 0, 191, 255, "deep sky blue" },
|
||||
{ 0, 191, 255, "DeepSkyBlue" },
|
||||
{ 135, 206, 235, "sky blue" },
|
||||
{ 135, 206, 235, "SkyBlue" },
|
||||
{ 135, 206, 250, "light sky blue" },
|
||||
{ 135, 206, 250, "LightSkyBlue" },
|
||||
{ 70, 130, 180, "steel blue" },
|
||||
{ 70, 130, 180, "SteelBlue" },
|
||||
{ 176, 196, 222, "light steel blue" },
|
||||
{ 176, 196, 222, "LightSteelBlue" },
|
||||
{ 173, 216, 230, "light blue" },
|
||||
{ 173, 216, 230, "LightBlue" },
|
||||
{ 176, 224, 230, "powder blue" },
|
||||
{ 176, 224, 230, "PowderBlue" },
|
||||
{ 175, 238, 238, "pale turquoise" },
|
||||
{ 175, 238, 238, "PaleTurquoise" },
|
||||
{ 0, 206, 209, "dark turquoise" },
|
||||
{ 0, 206, 209, "DarkTurquoise" },
|
||||
{ 72, 209, 204, "medium turquoise" },
|
||||
{ 72, 209, 204, "MediumTurquoise" },
|
||||
{ 64, 224, 208, "turquoise" },
|
||||
{ 0, 255, 255, "cyan" },
|
||||
{ 224, 255, 255, "light cyan" },
|
||||
{ 224, 255, 255, "LightCyan" },
|
||||
{ 95, 158, 160, "cadet blue" },
|
||||
{ 95, 158, 160, "CadetBlue" },
|
||||
{ 102, 205, 170, "medium aquamarine" },
|
||||
{ 102, 205, 170, "MediumAquamarine" },
|
||||
{ 127, 255, 212, "aquamarine" },
|
||||
{ 0, 100, 0, "dark green" },
|
||||
{ 0, 100, 0, "DarkGreen" },
|
||||
{ 85, 107, 47, "dark olive green" },
|
||||
{ 85, 107, 47, "DarkOliveGreen" },
|
||||
{ 143, 188, 143, "dark sea green" },
|
||||
{ 143, 188, 143, "DarkSeaGreen" },
|
||||
{ 46, 139, 87, "sea green" },
|
||||
{ 46, 139, 87, "SeaGreen" },
|
||||
{ 60, 179, 113, "medium sea green" },
|
||||
{ 60, 179, 113, "MediumSeaGreen" },
|
||||
{ 32, 178, 170, "light sea green" },
|
||||
{ 32, 178, 170, "LightSeaGreen" },
|
||||
{ 152, 251, 152, "pale green" },
|
||||
{ 152, 251, 152, "PaleGreen" },
|
||||
{ 0, 255, 127, "spring green" },
|
||||
{ 0, 255, 127, "SpringGreen" },
|
||||
{ 124, 252, 0, "lawn green" },
|
||||
{ 124, 252, 0, "LawnGreen" },
|
||||
{ 0, 255, 0, "green" },
|
||||
{ 127, 255, 0, "chartreuse" },
|
||||
{ 0, 250, 154, "medium spring green" },
|
||||
{ 0, 250, 154, "MediumSpringGreen" },
|
||||
{ 173, 255, 47, "green yellow" },
|
||||
{ 173, 255, 47, "GreenYellow" },
|
||||
{ 50, 205, 50, "lime green" },
|
||||
{ 50, 205, 50, "LimeGreen" },
|
||||
{ 154, 205, 50, "yellow green" },
|
||||
{ 154, 205, 50, "YellowGreen" },
|
||||
{ 34, 139, 34, "forest green" },
|
||||
{ 34, 139, 34, "ForestGreen" },
|
||||
{ 107, 142, 35, "olive drab" },
|
||||
{ 107, 142, 35, "OliveDrab" },
|
||||
{ 189, 183, 107, "dark khaki" },
|
||||
{ 189, 183, 107, "DarkKhaki" },
|
||||
{ 240, 230, 140, "khaki" },
|
||||
{ 238, 232, 170, "pale goldenrod" },
|
||||
{ 238, 232, 170, "PaleGoldenrod" },
|
||||
{ 250, 250, 210, "light goldenrod yellow" },
|
||||
{ 250, 250, 210, "LightGoldenrodYellow" },
|
||||
{ 255, 255, 224, "light yellow" },
|
||||
{ 255, 255, 224, "LightYellow" },
|
||||
{ 255, 255, 0, "yellow" },
|
||||
{ 255, 215, 0, "gold" },
|
||||
{ 238, 221, 130, "light goldenrod" },
|
||||
{ 238, 221, 130, "LightGoldenrod" },
|
||||
{ 218, 165, 32, "goldenrod" },
|
||||
{ 184, 134, 11, "dark goldenrod" },
|
||||
{ 184, 134, 11, "DarkGoldenrod" },
|
||||
{ 188, 143, 143, "rosy brown" },
|
||||
{ 188, 143, 143, "RosyBrown" },
|
||||
{ 205, 92, 92, "indian red" },
|
||||
{ 205, 92, 92, "IndianRed" },
|
||||
{ 139, 69, 19, "saddle brown" },
|
||||
{ 139, 69, 19, "SaddleBrown" },
|
||||
{ 160, 82, 45, "sienna" },
|
||||
{ 205, 133, 63, "peru" },
|
||||
{ 222, 184, 135, "burlywood" },
|
||||
{ 245, 245, 220, "beige" },
|
||||
{ 245, 222, 179, "wheat" },
|
||||
{ 244, 164, 96, "sandy brown" },
|
||||
{ 244, 164, 96, "SandyBrown" },
|
||||
{ 210, 180, 140, "tan" },
|
||||
{ 210, 105, 30, "chocolate" },
|
||||
{ 178, 34, 34, "firebrick" },
|
||||
{ 165, 42, 42, "brown" },
|
||||
{ 233, 150, 122, "dark salmon" },
|
||||
{ 233, 150, 122, "DarkSalmon" },
|
||||
{ 250, 128, 114, "salmon" },
|
||||
{ 255, 160, 122, "light salmon" },
|
||||
{ 255, 160, 122, "LightSalmon" },
|
||||
{ 255, 165, 0, "orange" },
|
||||
{ 255, 140, 0, "dark orange" },
|
||||
{ 255, 140, 0, "DarkOrange" },
|
||||
{ 255, 127, 80, "coral" },
|
||||
{ 240, 128, 128, "light coral" },
|
||||
{ 240, 128, 128, "LightCoral" },
|
||||
{ 255, 99, 71, "tomato" },
|
||||
{ 255, 69, 0, "orange red" },
|
||||
{ 255, 69, 0, "OrangeRed" },
|
||||
{ 255, 0, 0, "red" },
|
||||
{ 255, 105, 180, "hot pink" },
|
||||
{ 255, 105, 180, "HotPink" },
|
||||
{ 255, 20, 147, "deep pink" },
|
||||
{ 255, 20, 147, "DeepPink" },
|
||||
{ 255, 192, 203, "pink" },
|
||||
{ 255, 182, 193, "light pink" },
|
||||
{ 255, 182, 193, "LightPink" },
|
||||
{ 219, 112, 147, "pale violet red" },
|
||||
{ 219, 112, 147, "PaleVioletRed" },
|
||||
{ 176, 48, 96, "maroon" },
|
||||
{ 199, 21, 133, "medium violet red" },
|
||||
{ 199, 21, 133, "MediumVioletRed" },
|
||||
{ 208, 32, 144, "violet red" },
|
||||
{ 208, 32, 144, "VioletRed" },
|
||||
{ 255, 0, 255, "magenta" },
|
||||
{ 238, 130, 238, "violet" },
|
||||
{ 221, 160, 221, "plum" },
|
||||
{ 218, 112, 214, "orchid" },
|
||||
{ 186, 85, 211, "medium orchid" },
|
||||
{ 186, 85, 211, "MediumOrchid" },
|
||||
{ 153, 50, 204, "dark orchid" },
|
||||
{ 153, 50, 204, "DarkOrchid" },
|
||||
{ 148, 0, 211, "dark violet" },
|
||||
{ 148, 0, 211, "DarkViolet" },
|
||||
{ 138, 43, 226, "blue violet" },
|
||||
{ 138, 43, 226, "BlueViolet" },
|
||||
{ 160, 32, 240, "purple" },
|
||||
{ 147, 112, 219, "medium purple" },
|
||||
{ 147, 112, 219, "MediumPurple" },
|
||||
{ 216, 191, 216, "thistle" },
|
||||
{ 255, 250, 250, "snow1" },
|
||||
{ 238, 233, 233, "snow2" },
|
||||
{ 205, 201, 201, "snow3" },
|
||||
{ 139, 137, 137, "snow4" },
|
||||
{ 255, 245, 238, "seashell1" },
|
||||
{ 238, 229, 222, "seashell2" },
|
||||
{ 205, 197, 191, "seashell3" },
|
||||
{ 139, 134, 130, "seashell4" },
|
||||
{ 255, 239, 219, "AntiqueWhite1" },
|
||||
{ 238, 223, 204, "AntiqueWhite2" },
|
||||
{ 205, 192, 176, "AntiqueWhite3" },
|
||||
{ 139, 131, 120, "AntiqueWhite4" },
|
||||
{ 255, 228, 196, "bisque1" },
|
||||
{ 238, 213, 183, "bisque2" },
|
||||
{ 205, 183, 158, "bisque3" },
|
||||
{ 139, 125, 107, "bisque4" },
|
||||
{ 255, 218, 185, "PeachPuff1" },
|
||||
{ 238, 203, 173, "PeachPuff2" },
|
||||
{ 205, 175, 149, "PeachPuff3" },
|
||||
{ 139, 119, 101, "PeachPuff4" },
|
||||
{ 255, 222, 173, "NavajoWhite1" },
|
||||
{ 238, 207, 161, "NavajoWhite2" },
|
||||
{ 205, 179, 139, "NavajoWhite3" },
|
||||
{ 139, 121, 94, "NavajoWhite4" },
|
||||
{ 255, 250, 205, "LemonChiffon1" },
|
||||
{ 238, 233, 191, "LemonChiffon2" },
|
||||
{ 205, 201, 165, "LemonChiffon3" },
|
||||
{ 139, 137, 112, "LemonChiffon4" },
|
||||
{ 255, 248, 220, "cornsilk1" },
|
||||
{ 238, 232, 205, "cornsilk2" },
|
||||
{ 205, 200, 177, "cornsilk3" },
|
||||
{ 139, 136, 120, "cornsilk4" },
|
||||
{ 255, 255, 240, "ivory1" },
|
||||
{ 238, 238, 224, "ivory2" },
|
||||
{ 205, 205, 193, "ivory3" },
|
||||
{ 139, 139, 131, "ivory4" },
|
||||
{ 240, 255, 240, "honeydew1" },
|
||||
{ 224, 238, 224, "honeydew2" },
|
||||
{ 193, 205, 193, "honeydew3" },
|
||||
{ 131, 139, 131, "honeydew4" },
|
||||
{ 255, 240, 245, "LavenderBlush1" },
|
||||
{ 238, 224, 229, "LavenderBlush2" },
|
||||
{ 205, 193, 197, "LavenderBlush3" },
|
||||
{ 139, 131, 134, "LavenderBlush4" },
|
||||
{ 255, 228, 225, "MistyRose1" },
|
||||
{ 238, 213, 210, "MistyRose2" },
|
||||
{ 205, 183, 181, "MistyRose3" },
|
||||
{ 139, 125, 123, "MistyRose4" },
|
||||
{ 240, 255, 255, "azure1" },
|
||||
{ 224, 238, 238, "azure2" },
|
||||
{ 193, 205, 205, "azure3" },
|
||||
{ 131, 139, 139, "azure4" },
|
||||
{ 131, 111, 255, "SlateBlue1" },
|
||||
{ 122, 103, 238, "SlateBlue2" },
|
||||
{ 105, 89, 205, "SlateBlue3" },
|
||||
{ 71, 60, 139, "SlateBlue4" },
|
||||
{ 72, 118, 255, "RoyalBlue1" },
|
||||
{ 67, 110, 238, "RoyalBlue2" },
|
||||
{ 58, 95, 205, "RoyalBlue3" },
|
||||
{ 39, 64, 139, "RoyalBlue4" },
|
||||
{ 0, 0, 255, "blue1" },
|
||||
{ 0, 0, 238, "blue2" },
|
||||
{ 0, 0, 205, "blue3" },
|
||||
{ 0, 0, 139, "blue4" },
|
||||
{ 30, 144, 255, "DodgerBlue1" },
|
||||
{ 28, 134, 238, "DodgerBlue2" },
|
||||
{ 24, 116, 205, "DodgerBlue3" },
|
||||
{ 16, 78, 139, "DodgerBlue4" },
|
||||
{ 99, 184, 255, "SteelBlue1" },
|
||||
{ 92, 172, 238, "SteelBlue2" },
|
||||
{ 79, 148, 205, "SteelBlue3" },
|
||||
{ 54, 100, 139, "SteelBlue4" },
|
||||
{ 0, 191, 255, "DeepSkyBlue1" },
|
||||
{ 0, 178, 238, "DeepSkyBlue2" },
|
||||
{ 0, 154, 205, "DeepSkyBlue3" },
|
||||
{ 0, 104, 139, "DeepSkyBlue4" },
|
||||
{ 135, 206, 255, "SkyBlue1" },
|
||||
{ 126, 192, 238, "SkyBlue2" },
|
||||
{ 108, 166, 205, "SkyBlue3" },
|
||||
{ 74, 112, 139, "SkyBlue4" },
|
||||
{ 176, 226, 255, "LightSkyBlue1" },
|
||||
{ 164, 211, 238, "LightSkyBlue2" },
|
||||
{ 141, 182, 205, "LightSkyBlue3" },
|
||||
{ 96, 123, 139, "LightSkyBlue4" },
|
||||
{ 198, 226, 255, "SlateGray1" },
|
||||
{ 185, 211, 238, "SlateGray2" },
|
||||
{ 159, 182, 205, "SlateGray3" },
|
||||
{ 108, 123, 139, "SlateGray4" },
|
||||
{ 202, 225, 255, "LightSteelBlue1" },
|
||||
{ 188, 210, 238, "LightSteelBlue2" },
|
||||
{ 162, 181, 205, "LightSteelBlue3" },
|
||||
{ 110, 123, 139, "LightSteelBlue4" },
|
||||
{ 191, 239, 255, "LightBlue1" },
|
||||
{ 178, 223, 238, "LightBlue2" },
|
||||
{ 154, 192, 205, "LightBlue3" },
|
||||
{ 104, 131, 139, "LightBlue4" },
|
||||
{ 224, 255, 255, "LightCyan1" },
|
||||
{ 209, 238, 238, "LightCyan2" },
|
||||
{ 180, 205, 205, "LightCyan3" },
|
||||
{ 122, 139, 139, "LightCyan4" },
|
||||
{ 187, 255, 255, "PaleTurquoise1" },
|
||||
{ 174, 238, 238, "PaleTurquoise2" },
|
||||
{ 150, 205, 205, "PaleTurquoise3" },
|
||||
{ 102, 139, 139, "PaleTurquoise4" },
|
||||
{ 152, 245, 255, "CadetBlue1" },
|
||||
{ 142, 229, 238, "CadetBlue2" },
|
||||
{ 122, 197, 205, "CadetBlue3" },
|
||||
{ 83, 134, 139, "CadetBlue4" },
|
||||
{ 0, 245, 255, "turquoise1" },
|
||||
{ 0, 229, 238, "turquoise2" },
|
||||
{ 0, 197, 205, "turquoise3" },
|
||||
{ 0, 134, 139, "turquoise4" },
|
||||
{ 0, 255, 255, "cyan1" },
|
||||
{ 0, 238, 238, "cyan2" },
|
||||
{ 0, 205, 205, "cyan3" },
|
||||
{ 0, 139, 139, "cyan4" },
|
||||
{ 151, 255, 255, "DarkSlateGray1" },
|
||||
{ 141, 238, 238, "DarkSlateGray2" },
|
||||
{ 121, 205, 205, "DarkSlateGray3" },
|
||||
{ 82, 139, 139, "DarkSlateGray4" },
|
||||
{ 127, 255, 212, "aquamarine1" },
|
||||
{ 118, 238, 198, "aquamarine2" },
|
||||
{ 102, 205, 170, "aquamarine3" },
|
||||
{ 69, 139, 116, "aquamarine4" },
|
||||
{ 193, 255, 193, "DarkSeaGreen1" },
|
||||
{ 180, 238, 180, "DarkSeaGreen2" },
|
||||
{ 155, 205, 155, "DarkSeaGreen3" },
|
||||
{ 105, 139, 105, "DarkSeaGreen4" },
|
||||
{ 84, 255, 159, "SeaGreen1" },
|
||||
{ 78, 238, 148, "SeaGreen2" },
|
||||
{ 67, 205, 128, "SeaGreen3" },
|
||||
{ 46, 139, 87, "SeaGreen4" },
|
||||
{ 154, 255, 154, "PaleGreen1" },
|
||||
{ 144, 238, 144, "PaleGreen2" },
|
||||
{ 124, 205, 124, "PaleGreen3" },
|
||||
{ 84, 139, 84, "PaleGreen4" },
|
||||
{ 0, 255, 127, "SpringGreen1" },
|
||||
{ 0, 238, 118, "SpringGreen2" },
|
||||
{ 0, 205, 102, "SpringGreen3" },
|
||||
{ 0, 139, 69, "SpringGreen4" },
|
||||
{ 0, 255, 0, "green1" },
|
||||
{ 0, 238, 0, "green2" },
|
||||
{ 0, 205, 0, "green3" },
|
||||
{ 0, 139, 0, "green4" },
|
||||
{ 127, 255, 0, "chartreuse1" },
|
||||
{ 118, 238, 0, "chartreuse2" },
|
||||
{ 102, 205, 0, "chartreuse3" },
|
||||
{ 69, 139, 0, "chartreuse4" },
|
||||
{ 192, 255, 62, "OliveDrab1" },
|
||||
{ 179, 238, 58, "OliveDrab2" },
|
||||
{ 154, 205, 50, "OliveDrab3" },
|
||||
{ 105, 139, 34, "OliveDrab4" },
|
||||
{ 202, 255, 112, "DarkOliveGreen1" },
|
||||
{ 188, 238, 104, "DarkOliveGreen2" },
|
||||
{ 162, 205, 90, "DarkOliveGreen3" },
|
||||
{ 110, 139, 61, "DarkOliveGreen4" },
|
||||
{ 255, 246, 143, "khaki1" },
|
||||
{ 238, 230, 133, "khaki2" },
|
||||
{ 205, 198, 115, "khaki3" },
|
||||
{ 139, 134, 78, "khaki4" },
|
||||
{ 255, 236, 139, "LightGoldenrod1" },
|
||||
{ 238, 220, 130, "LightGoldenrod2" },
|
||||
{ 205, 190, 112, "LightGoldenrod3" },
|
||||
{ 139, 129, 76, "LightGoldenrod4" },
|
||||
{ 255, 255, 224, "LightYellow1" },
|
||||
{ 238, 238, 209, "LightYellow2" },
|
||||
{ 205, 205, 180, "LightYellow3" },
|
||||
{ 139, 139, 122, "LightYellow4" },
|
||||
{ 255, 255, 0, "yellow1" },
|
||||
{ 238, 238, 0, "yellow2" },
|
||||
{ 205, 205, 0, "yellow3" },
|
||||
{ 139, 139, 0, "yellow4" },
|
||||
{ 255, 215, 0, "gold1" },
|
||||
{ 238, 201, 0, "gold2" },
|
||||
{ 205, 173, 0, "gold3" },
|
||||
{ 139, 117, 0, "gold4" },
|
||||
{ 255, 193, 37, "goldenrod1" },
|
||||
{ 238, 180, 34, "goldenrod2" },
|
||||
{ 205, 155, 29, "goldenrod3" },
|
||||
{ 139, 105, 20, "goldenrod4" },
|
||||
{ 255, 185, 15, "DarkGoldenrod1" },
|
||||
{ 238, 173, 14, "DarkGoldenrod2" },
|
||||
{ 205, 149, 12, "DarkGoldenrod3" },
|
||||
{ 139, 101, 8, "DarkGoldenrod4" },
|
||||
{ 255, 193, 193, "RosyBrown1" },
|
||||
{ 238, 180, 180, "RosyBrown2" },
|
||||
{ 205, 155, 155, "RosyBrown3" },
|
||||
{ 139, 105, 105, "RosyBrown4" },
|
||||
{ 255, 106, 106, "IndianRed1" },
|
||||
{ 238, 99, 99, "IndianRed2" },
|
||||
{ 205, 85, 85, "IndianRed3" },
|
||||
{ 139, 58, 58, "IndianRed4" },
|
||||
{ 255, 130, 71, "sienna1" },
|
||||
{ 238, 121, 66, "sienna2" },
|
||||
{ 205, 104, 57, "sienna3" },
|
||||
{ 139, 71, 38, "sienna4" },
|
||||
{ 255, 211, 155, "burlywood1" },
|
||||
{ 238, 197, 145, "burlywood2" },
|
||||
{ 205, 170, 125, "burlywood3" },
|
||||
{ 139, 115, 85, "burlywood4" },
|
||||
{ 255, 231, 186, "wheat1" },
|
||||
{ 238, 216, 174, "wheat2" },
|
||||
{ 205, 186, 150, "wheat3" },
|
||||
{ 139, 126, 102, "wheat4" },
|
||||
{ 255, 165, 79, "tan1" },
|
||||
{ 238, 154, 73, "tan2" },
|
||||
{ 205, 133, 63, "tan3" },
|
||||
{ 139, 90, 43, "tan4" },
|
||||
{ 255, 127, 36, "chocolate1" },
|
||||
{ 238, 118, 33, "chocolate2" },
|
||||
{ 205, 102, 29, "chocolate3" },
|
||||
{ 139, 69, 19, "chocolate4" },
|
||||
{ 255, 48, 48, "firebrick1" },
|
||||
{ 238, 44, 44, "firebrick2" },
|
||||
{ 205, 38, 38, "firebrick3" },
|
||||
{ 139, 26, 26, "firebrick4" },
|
||||
{ 255, 64, 64, "brown1" },
|
||||
{ 238, 59, 59, "brown2" },
|
||||
{ 205, 51, 51, "brown3" },
|
||||
{ 139, 35, 35, "brown4" },
|
||||
{ 255, 140, 105, "salmon1" },
|
||||
{ 238, 130, 98, "salmon2" },
|
||||
{ 205, 112, 84, "salmon3" },
|
||||
{ 139, 76, 57, "salmon4" },
|
||||
{ 255, 160, 122, "LightSalmon1" },
|
||||
{ 238, 149, 114, "LightSalmon2" },
|
||||
{ 205, 129, 98, "LightSalmon3" },
|
||||
{ 139, 87, 66, "LightSalmon4" },
|
||||
{ 255, 165, 0, "orange1" },
|
||||
{ 238, 154, 0, "orange2" },
|
||||
{ 205, 133, 0, "orange3" },
|
||||
{ 139, 90, 0, "orange4" },
|
||||
{ 255, 127, 0, "DarkOrange1" },
|
||||
{ 238, 118, 0, "DarkOrange2" },
|
||||
{ 205, 102, 0, "DarkOrange3" },
|
||||
{ 139, 69, 0, "DarkOrange4" },
|
||||
{ 255, 114, 86, "coral1" },
|
||||
{ 238, 106, 80, "coral2" },
|
||||
{ 205, 91, 69, "coral3" },
|
||||
{ 139, 62, 47, "coral4" },
|
||||
{ 255, 99, 71, "tomato1" },
|
||||
{ 238, 92, 66, "tomato2" },
|
||||
{ 205, 79, 57, "tomato3" },
|
||||
{ 139, 54, 38, "tomato4" },
|
||||
{ 255, 69, 0, "OrangeRed1" },
|
||||
{ 238, 64, 0, "OrangeRed2" },
|
||||
{ 205, 55, 0, "OrangeRed3" },
|
||||
{ 139, 37, 0, "OrangeRed4" },
|
||||
{ 255, 0, 0, "red1" },
|
||||
{ 238, 0, 0, "red2" },
|
||||
{ 205, 0, 0, "red3" },
|
||||
{ 139, 0, 0, "red4" },
|
||||
{ 215, 7, 81, "DebianRed" },
|
||||
{ 255, 20, 147, "DeepPink1" },
|
||||
{ 238, 18, 137, "DeepPink2" },
|
||||
{ 205, 16, 118, "DeepPink3" },
|
||||
{ 139, 10, 80, "DeepPink4" },
|
||||
{ 255, 110, 180, "HotPink1" },
|
||||
{ 238, 106, 167, "HotPink2" },
|
||||
{ 205, 96, 144, "HotPink3" },
|
||||
{ 139, 58, 98, "HotPink4" },
|
||||
{ 255, 181, 197, "pink1" },
|
||||
{ 238, 169, 184, "pink2" },
|
||||
{ 205, 145, 158, "pink3" },
|
||||
{ 139, 99, 108, "pink4" },
|
||||
{ 255, 174, 185, "LightPink1" },
|
||||
{ 238, 162, 173, "LightPink2" },
|
||||
{ 205, 140, 149, "LightPink3" },
|
||||
{ 139, 95, 101, "LightPink4" },
|
||||
{ 255, 130, 171, "PaleVioletRed1" },
|
||||
{ 238, 121, 159, "PaleVioletRed2" },
|
||||
{ 205, 104, 137, "PaleVioletRed3" },
|
||||
{ 139, 71, 93, "PaleVioletRed4" },
|
||||
{ 255, 52, 179, "maroon1" },
|
||||
{ 238, 48, 167, "maroon2" },
|
||||
{ 205, 41, 144, "maroon3" },
|
||||
{ 139, 28, 98, "maroon4" },
|
||||
{ 255, 62, 150, "VioletRed1" },
|
||||
{ 238, 58, 140, "VioletRed2" },
|
||||
{ 205, 50, 120, "VioletRed3" },
|
||||
{ 139, 34, 82, "VioletRed4" },
|
||||
{ 255, 0, 255, "magenta1" },
|
||||
{ 238, 0, 238, "magenta2" },
|
||||
{ 205, 0, 205, "magenta3" },
|
||||
{ 139, 0, 139, "magenta4" },
|
||||
{ 255, 131, 250, "orchid1" },
|
||||
{ 238, 122, 233, "orchid2" },
|
||||
{ 205, 105, 201, "orchid3" },
|
||||
{ 139, 71, 137, "orchid4" },
|
||||
{ 255, 187, 255, "plum1" },
|
||||
{ 238, 174, 238, "plum2" },
|
||||
{ 205, 150, 205, "plum3" },
|
||||
{ 139, 102, 139, "plum4" },
|
||||
{ 224, 102, 255, "MediumOrchid1" },
|
||||
{ 209, 95, 238, "MediumOrchid2" },
|
||||
{ 180, 82, 205, "MediumOrchid3" },
|
||||
{ 122, 55, 139, "MediumOrchid4" },
|
||||
{ 191, 62, 255, "DarkOrchid1" },
|
||||
{ 178, 58, 238, "DarkOrchid2" },
|
||||
{ 154, 50, 205, "DarkOrchid3" },
|
||||
{ 104, 34, 139, "DarkOrchid4" },
|
||||
{ 155, 48, 255, "purple1" },
|
||||
{ 145, 44, 238, "purple2" },
|
||||
{ 125, 38, 205, "purple3" },
|
||||
{ 85, 26, 139, "purple4" },
|
||||
{ 171, 130, 255, "MediumPurple1" },
|
||||
{ 159, 121, 238, "MediumPurple2" },
|
||||
{ 137, 104, 205, "MediumPurple3" },
|
||||
{ 93, 71, 139, "MediumPurple4" },
|
||||
{ 255, 225, 255, "thistle1" },
|
||||
{ 238, 210, 238, "thistle2" },
|
||||
{ 205, 181, 205, "thistle3" },
|
||||
{ 139, 123, 139, "thistle4" },
|
||||
{ 0, 0, 0, "gray0" },
|
||||
{ 0, 0, 0, "grey0" },
|
||||
{ 3, 3, 3, "gray1" },
|
||||
{ 3, 3, 3, "grey1" },
|
||||
{ 5, 5, 5, "gray2" },
|
||||
{ 5, 5, 5, "grey2" },
|
||||
{ 8, 8, 8, "gray3" },
|
||||
{ 8, 8, 8, "grey3" },
|
||||
{ 10, 10, 10, "gray4" },
|
||||
{ 10, 10, 10, "grey4" },
|
||||
{ 13, 13, 13, "gray5" },
|
||||
{ 13, 13, 13, "grey5" },
|
||||
{ 15, 15, 15, "gray6" },
|
||||
{ 15, 15, 15, "grey6" },
|
||||
{ 18, 18, 18, "gray7" },
|
||||
{ 18, 18, 18, "grey7" },
|
||||
{ 20, 20, 20, "gray8" },
|
||||
{ 20, 20, 20, "grey8" },
|
||||
{ 23, 23, 23, "gray9" },
|
||||
{ 23, 23, 23, "grey9" },
|
||||
{ 26, 26, 26, "gray10" },
|
||||
{ 26, 26, 26, "grey10" },
|
||||
{ 28, 28, 28, "gray11" },
|
||||
{ 28, 28, 28, "grey11" },
|
||||
{ 31, 31, 31, "gray12" },
|
||||
{ 31, 31, 31, "grey12" },
|
||||
{ 33, 33, 33, "gray13" },
|
||||
{ 33, 33, 33, "grey13" },
|
||||
{ 36, 36, 36, "gray14" },
|
||||
{ 36, 36, 36, "grey14" },
|
||||
{ 38, 38, 38, "gray15" },
|
||||
{ 38, 38, 38, "grey15" },
|
||||
{ 41, 41, 41, "gray16" },
|
||||
{ 41, 41, 41, "grey16" },
|
||||
{ 43, 43, 43, "gray17" },
|
||||
{ 43, 43, 43, "grey17" },
|
||||
{ 46, 46, 46, "gray18" },
|
||||
{ 46, 46, 46, "grey18" },
|
||||
{ 48, 48, 48, "gray19" },
|
||||
{ 48, 48, 48, "grey19" },
|
||||
{ 51, 51, 51, "gray20" },
|
||||
{ 51, 51, 51, "grey20" },
|
||||
{ 54, 54, 54, "gray21" },
|
||||
{ 54, 54, 54, "grey21" },
|
||||
{ 56, 56, 56, "gray22" },
|
||||
{ 56, 56, 56, "grey22" },
|
||||
{ 59, 59, 59, "gray23" },
|
||||
{ 59, 59, 59, "grey23" },
|
||||
{ 61, 61, 61, "gray24" },
|
||||
{ 61, 61, 61, "grey24" },
|
||||
{ 64, 64, 64, "gray25" },
|
||||
{ 64, 64, 64, "grey25" },
|
||||
{ 66, 66, 66, "gray26" },
|
||||
{ 66, 66, 66, "grey26" },
|
||||
{ 69, 69, 69, "gray27" },
|
||||
{ 69, 69, 69, "grey27" },
|
||||
{ 71, 71, 71, "gray28" },
|
||||
{ 71, 71, 71, "grey28" },
|
||||
{ 74, 74, 74, "gray29" },
|
||||
{ 74, 74, 74, "grey29" },
|
||||
{ 77, 77, 77, "gray30" },
|
||||
{ 77, 77, 77, "grey30" },
|
||||
{ 79, 79, 79, "gray31" },
|
||||
{ 79, 79, 79, "grey31" },
|
||||
{ 82, 82, 82, "gray32" },
|
||||
{ 82, 82, 82, "grey32" },
|
||||
{ 84, 84, 84, "gray33" },
|
||||
{ 84, 84, 84, "grey33" },
|
||||
{ 87, 87, 87, "gray34" },
|
||||
{ 87, 87, 87, "grey34" },
|
||||
{ 89, 89, 89, "gray35" },
|
||||
{ 89, 89, 89, "grey35" },
|
||||
{ 92, 92, 92, "gray36" },
|
||||
{ 92, 92, 92, "grey36" },
|
||||
{ 94, 94, 94, "gray37" },
|
||||
{ 94, 94, 94, "grey37" },
|
||||
{ 97, 97, 97, "gray38" },
|
||||
{ 97, 97, 97, "grey38" },
|
||||
{ 99, 99, 99, "gray39" },
|
||||
{ 99, 99, 99, "grey39" },
|
||||
{ 102, 102, 102, "gray40" },
|
||||
{ 102, 102, 102, "grey40" },
|
||||
{ 105, 105, 105, "gray41" },
|
||||
{ 105, 105, 105, "grey41" },
|
||||
{ 107, 107, 107, "gray42" },
|
||||
{ 107, 107, 107, "grey42" },
|
||||
{ 110, 110, 110, "gray43" },
|
||||
{ 110, 110, 110, "grey43" },
|
||||
{ 112, 112, 112, "gray44" },
|
||||
{ 112, 112, 112, "grey44" },
|
||||
{ 115, 115, 115, "gray45" },
|
||||
{ 115, 115, 115, "grey45" },
|
||||
{ 117, 117, 117, "gray46" },
|
||||
{ 117, 117, 117, "grey46" },
|
||||
{ 120, 120, 120, "gray47" },
|
||||
{ 120, 120, 120, "grey47" },
|
||||
{ 122, 122, 122, "gray48" },
|
||||
{ 122, 122, 122, "grey48" },
|
||||
{ 125, 125, 125, "gray49" },
|
||||
{ 125, 125, 125, "grey49" },
|
||||
{ 127, 127, 127, "gray50" },
|
||||
{ 127, 127, 127, "grey50" },
|
||||
{ 130, 130, 130, "gray51" },
|
||||
{ 130, 130, 130, "grey51" },
|
||||
{ 133, 133, 133, "gray52" },
|
||||
{ 133, 133, 133, "grey52" },
|
||||
{ 135, 135, 135, "gray53" },
|
||||
{ 135, 135, 135, "grey53" },
|
||||
{ 138, 138, 138, "gray54" },
|
||||
{ 138, 138, 138, "grey54" },
|
||||
{ 140, 140, 140, "gray55" },
|
||||
{ 140, 140, 140, "grey55" },
|
||||
{ 143, 143, 143, "gray56" },
|
||||
{ 143, 143, 143, "grey56" },
|
||||
{ 145, 145, 145, "gray57" },
|
||||
{ 145, 145, 145, "grey57" },
|
||||
{ 148, 148, 148, "gray58" },
|
||||
{ 148, 148, 148, "grey58" },
|
||||
{ 150, 150, 150, "gray59" },
|
||||
{ 150, 150, 150, "grey59" },
|
||||
{ 153, 153, 153, "gray60" },
|
||||
{ 153, 153, 153, "grey60" },
|
||||
{ 156, 156, 156, "gray61" },
|
||||
{ 156, 156, 156, "grey61" },
|
||||
{ 158, 158, 158, "gray62" },
|
||||
{ 158, 158, 158, "grey62" },
|
||||
{ 161, 161, 161, "gray63" },
|
||||
{ 161, 161, 161, "grey63" },
|
||||
{ 163, 163, 163, "gray64" },
|
||||
{ 163, 163, 163, "grey64" },
|
||||
{ 166, 166, 166, "gray65" },
|
||||
{ 166, 166, 166, "grey65" },
|
||||
{ 168, 168, 168, "gray66" },
|
||||
{ 168, 168, 168, "grey66" },
|
||||
{ 171, 171, 171, "gray67" },
|
||||
{ 171, 171, 171, "grey67" },
|
||||
{ 173, 173, 173, "gray68" },
|
||||
{ 173, 173, 173, "grey68" },
|
||||
{ 176, 176, 176, "gray69" },
|
||||
{ 176, 176, 176, "grey69" },
|
||||
{ 179, 179, 179, "gray70" },
|
||||
{ 179, 179, 179, "grey70" },
|
||||
{ 181, 181, 181, "gray71" },
|
||||
{ 181, 181, 181, "grey71" },
|
||||
{ 184, 184, 184, "gray72" },
|
||||
{ 184, 184, 184, "grey72" },
|
||||
{ 186, 186, 186, "gray73" },
|
||||
{ 186, 186, 186, "grey73" },
|
||||
{ 189, 189, 189, "gray74" },
|
||||
{ 189, 189, 189, "grey74" },
|
||||
{ 191, 191, 191, "gray75" },
|
||||
{ 191, 191, 191, "grey75" },
|
||||
{ 194, 194, 194, "gray76" },
|
||||
{ 194, 194, 194, "grey76" },
|
||||
{ 196, 196, 196, "gray77" },
|
||||
{ 196, 196, 196, "grey77" },
|
||||
{ 199, 199, 199, "gray78" },
|
||||
{ 199, 199, 199, "grey78" },
|
||||
{ 201, 201, 201, "gray79" },
|
||||
{ 201, 201, 201, "grey79" },
|
||||
{ 204, 204, 204, "gray80" },
|
||||
{ 204, 204, 204, "grey80" },
|
||||
{ 207, 207, 207, "gray81" },
|
||||
{ 207, 207, 207, "grey81" },
|
||||
{ 209, 209, 209, "gray82" },
|
||||
{ 209, 209, 209, "grey82" },
|
||||
{ 212, 212, 212, "gray83" },
|
||||
{ 212, 212, 212, "grey83" },
|
||||
{ 214, 214, 214, "gray84" },
|
||||
{ 214, 214, 214, "grey84" },
|
||||
{ 217, 217, 217, "gray85" },
|
||||
{ 217, 217, 217, "grey85" },
|
||||
{ 219, 219, 219, "gray86" },
|
||||
{ 219, 219, 219, "grey86" },
|
||||
{ 222, 222, 222, "gray87" },
|
||||
{ 222, 222, 222, "grey87" },
|
||||
{ 224, 224, 224, "gray88" },
|
||||
{ 224, 224, 224, "grey88" },
|
||||
{ 227, 227, 227, "gray89" },
|
||||
{ 227, 227, 227, "grey89" },
|
||||
{ 229, 229, 229, "gray90" },
|
||||
{ 229, 229, 229, "grey90" },
|
||||
{ 232, 232, 232, "gray91" },
|
||||
{ 232, 232, 232, "grey91" },
|
||||
{ 235, 235, 235, "gray92" },
|
||||
{ 235, 235, 235, "grey92" },
|
||||
{ 237, 237, 237, "gray93" },
|
||||
{ 237, 237, 237, "grey93" },
|
||||
{ 240, 240, 240, "gray94" },
|
||||
{ 240, 240, 240, "grey94" },
|
||||
{ 242, 242, 242, "gray95" },
|
||||
{ 242, 242, 242, "grey95" },
|
||||
{ 245, 245, 245, "gray96" },
|
||||
{ 245, 245, 245, "grey96" },
|
||||
{ 247, 247, 247, "gray97" },
|
||||
{ 247, 247, 247, "grey97" },
|
||||
{ 250, 250, 250, "gray98" },
|
||||
{ 250, 250, 250, "grey98" },
|
||||
{ 252, 252, 252, "gray99" },
|
||||
{ 252, 252, 252, "grey99" },
|
||||
{ 255, 255, 255, "gray100" },
|
||||
{ 255, 255, 255, "grey100" },
|
||||
{ 169, 169, 169, "dark grey" },
|
||||
{ 169, 169, 169, "DarkGrey" },
|
||||
{ 169, 169, 169, "dark gray" },
|
||||
{ 169, 169, 169, "DarkGray" },
|
||||
{ 0, 0, 139, "dark blue" },
|
||||
{ 0, 0, 139, "DarkBlue" },
|
||||
{ 0, 139, 139, "dark cyan" },
|
||||
{ 0, 139, 139, "DarkCyan" },
|
||||
{ 139, 0, 139, "dark magenta" },
|
||||
{ 139, 0, 139, "DarkMagenta" },
|
||||
{ 139, 0, 0, "dark red" },
|
||||
{ 139, 0, 0, "DarkRed" },
|
||||
{ 144, 238, 144, "light green" },
|
||||
{ 144, 238, 144, "LightGreen" },
|
||||
{ 0,0,0,0 }
|
||||
};
|
||||
|
||||
|
|
@ -19,10 +19,13 @@
|
|||
#include <wlr/types/wlr_primary_selection_v1.h>
|
||||
#include <wlr/types/wlr_output_layout.h>
|
||||
#include <wlr/types/wlr_xdg_shell.h>
|
||||
#include <wlr/types/wlr_xdg_decoration_v1.h>
|
||||
#include <wlr/types/wlr_server_decoration.h>
|
||||
|
||||
#include "waybox/output.h"
|
||||
#include "waybox/cursor.h"
|
||||
#include "waybox/seat.h"
|
||||
#include "waybox/style.h"
|
||||
|
||||
struct wb_server {
|
||||
struct wl_display *wl_display;
|
||||
|
|
@ -34,7 +37,9 @@ struct wb_server {
|
|||
struct wlr_output_layout *layout;
|
||||
struct wb_cursor *cursor;
|
||||
struct wb_seat *seat;
|
||||
struct wlr_server_decoration_manager *server_decoration;
|
||||
|
||||
struct wb_view *active_view;
|
||||
struct wb_view *grabbed_view;
|
||||
double grab_x, grab_y;
|
||||
struct wlr_box grab_geo_box;
|
||||
|
|
@ -47,8 +52,12 @@ struct wb_server {
|
|||
struct wl_listener new_output;
|
||||
struct wl_listener new_input;
|
||||
struct wl_list outputs; // wb_output::link
|
||||
|
||||
struct wb_style style;
|
||||
};
|
||||
|
||||
extern struct wb_server server;
|
||||
|
||||
bool wb_create_backend(struct wb_server* server);
|
||||
bool wb_start_server(struct wb_server* server);
|
||||
bool wb_terminate(struct wb_server* server);
|
||||
|
|
|
|||
34
include/waybox/stringop.h
Normal file
34
include/waybox/stringop.h
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
#ifndef _SWAY_STRINGOP_H
|
||||
#define _SWAY_STRINGOP_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
// #include "list.h"
|
||||
|
||||
void strip_whitespace(char *str);
|
||||
void strip_quotes(char *str);
|
||||
|
||||
// strcat that does nothing if dest or src is NULL
|
||||
char *lenient_strcat(char *dest, const char *src);
|
||||
char *lenient_strncat(char *dest, const char *src, size_t len);
|
||||
|
||||
// strcmp that also handles null pointers.
|
||||
int lenient_strcmp(char *a, char *b);
|
||||
|
||||
// Simply split a string with delims, free with `list_free_items_and_destroy`
|
||||
// list_t *split_string(const char *str, const char *delims);
|
||||
|
||||
// Splits an argument string, keeping quotes intact
|
||||
char **split_args(const char *str, int *argc);
|
||||
void free_argv(int argc, char **argv);
|
||||
|
||||
int unescape_string(char *string);
|
||||
char *join_args(char **argv, int argc);
|
||||
|
||||
// Split string into 2 by delim, handle quotes
|
||||
char *argsep(char **stringp, const char *delim, char *matched_delim);
|
||||
|
||||
// Expand a path using shell replacements such as $HOME and ~
|
||||
bool expand_path(char **path);
|
||||
|
||||
#endif
|
||||
192
include/waybox/style.h
Normal file
192
include/waybox/style.h
Normal file
|
|
@ -0,0 +1,192 @@
|
|||
#ifndef BOX_STYLE
|
||||
#define BOX_STYLE
|
||||
|
||||
enum {
|
||||
sf_solid = 1<<1,
|
||||
sf_flat = 1<<2,
|
||||
sf_raised = 1<<3,
|
||||
sf_diagonal = 1<<4,
|
||||
sf_crossdiagonal = 1<<5,
|
||||
sf_border = 1<<6,
|
||||
sf_bevel = 1<<7,
|
||||
sf_bevel1 = 1<<8,
|
||||
sf_bevel2 = 1<<9,
|
||||
sf_gradient = 1<<10,
|
||||
sf_interlaced = 1<<11,
|
||||
sf_sunken = 1<<12,
|
||||
sf_vertical = 1<<13,
|
||||
sf_horizontal = 1<<14
|
||||
};
|
||||
|
||||
struct wb_style {
|
||||
// Toolbar
|
||||
int toolbar;
|
||||
int toolbar_height;
|
||||
int toolbar_color;
|
||||
int toolbar_colorTo;
|
||||
// Buttons
|
||||
int toolbar_button;
|
||||
int toolbar_button_color;
|
||||
int toolbar_button_colorTo;
|
||||
int toolbar_button_picColor;
|
||||
int toolbar_button_pressed;
|
||||
int toolbar_button_pressed_color;
|
||||
int toolbar_button_pressed_colorTo;
|
||||
int toolbar_button_pressed_picColor;
|
||||
|
||||
int toolbar_label;
|
||||
int toolbar_label_color;
|
||||
int toolbar_label_colorTo;
|
||||
int toolbar_label_textColor;
|
||||
|
||||
// Workspace
|
||||
int toolbar_workspace;
|
||||
int toolbar_workspace_pixmap;
|
||||
int toolbar_workspace_color;
|
||||
int toolbar_workspace_colorTo;
|
||||
int toolbar_workspace_textColor;
|
||||
int toolbar_workspace_font;
|
||||
|
||||
// Window
|
||||
int toolbar_windowLabel;
|
||||
int toolbar_windowLabel_color;
|
||||
int toolbar_windowLabel_colorTo;
|
||||
int toolbar_windowLabel_textColor;
|
||||
|
||||
// Clock
|
||||
int toolbar_clock;
|
||||
int toolbar_clock_pixmap;
|
||||
int toolbar_clock_color;
|
||||
int toolbar_clock_colorTo;
|
||||
int toolbar_clock_textColor;
|
||||
int toolbar_clock_font;
|
||||
|
||||
// Iconbar
|
||||
int toolbar_iconbar_empty;
|
||||
int toolbar_iconbar_empty_pixmap;
|
||||
int toolbar_iconbar_empty_color;
|
||||
int toolbar_iconbar_empty_colorTo;
|
||||
|
||||
int toolbar_iconbar_focused;
|
||||
int toolbar_iconbar_focused_pixmap;
|
||||
int toolbar_iconbar_focused_color;
|
||||
int toolbar_iconbar_focused_colorTo;
|
||||
int toolbar_iconbar_focused_textColor;
|
||||
int toolbar_iconbar_focused_font;
|
||||
|
||||
// Text
|
||||
int toolbar_justify;
|
||||
int toolbar_font;
|
||||
|
||||
// Title
|
||||
int menu_title;
|
||||
int menu_title_color;
|
||||
int menu_title_colorTo;
|
||||
int menu_title_textColor;
|
||||
int menu_title_font;
|
||||
int menu_title_justify;
|
||||
|
||||
// Frame
|
||||
int menu_frame;
|
||||
int menu_frame_color;
|
||||
int menu_frame_colorTo;
|
||||
int menu_frame_textColor;
|
||||
int menu_frame_disableColor;
|
||||
int menu_frame_font;
|
||||
int menu_frame_justify;
|
||||
|
||||
// Submenu
|
||||
int menu_bullet;
|
||||
int menu_bullet_position;
|
||||
int menu_submenu_pixmap;
|
||||
|
||||
// Highlighted
|
||||
int menu_hilite;
|
||||
int menu_hilite_color;
|
||||
int menu_hilite_colorTo;
|
||||
int menu_hilite_textColor;
|
||||
int menu_selected_pixmap;
|
||||
int menu_unselected_pixmap;
|
||||
|
||||
// Title
|
||||
int window_title_focus;
|
||||
int window_title_focus_color;
|
||||
int window_title_focus_colorTo;
|
||||
int window_title_unfocus;
|
||||
int window_title_unfocus_color;
|
||||
int window_title_unfocus_colorTo;
|
||||
int window_title_height;
|
||||
|
||||
// Label
|
||||
int window_label_focus;
|
||||
int window_label_focus_color;
|
||||
int window_label_focus_colorTo;
|
||||
int window_label_focus_textColor;
|
||||
int window_label_unfocus;
|
||||
int window_label_unfocus_color;
|
||||
int window_label_unfocus_colorTo;
|
||||
int window_label_unfocus_textColor;
|
||||
|
||||
int window_handle_focus;
|
||||
int window_handle_focus_color;
|
||||
int window_handle_focus_colorTo;
|
||||
int window_handle_unfocus;
|
||||
int window_handle_unfocus_color;
|
||||
int window_handle_unfocus_colorTo;
|
||||
|
||||
int window_grip_focus;
|
||||
int window_grip_focus_color;
|
||||
int window_grip_focus_colorTo;
|
||||
int window_grip_unfocus;
|
||||
int window_grip_unfocus_color;
|
||||
int window_grip_unfocus_colorTo;
|
||||
|
||||
int window_button_focus;
|
||||
int window_button_focus_color;
|
||||
int window_button_focus_colorTo;
|
||||
int window_button_focus_picColor;
|
||||
int window_button_unfocus;
|
||||
int window_button_unfocus_color;
|
||||
int window_button_unfocus_colorTo;
|
||||
int window_button_unfocus_picColor;
|
||||
int window_button_pressed;
|
||||
int window_button_pressed_color;
|
||||
int window_button_pressed_colorTo;
|
||||
|
||||
int window_frame_focusColor;
|
||||
int window_frame_unfocusColor;
|
||||
|
||||
int window_tab_justify;
|
||||
int window_tab_label_unfocus;
|
||||
int window_tab_label_unfocus_color;
|
||||
int window_tab_label_unfocus_textColor;
|
||||
int window_tab_label_focus;
|
||||
int window_tab_label_focus_color;
|
||||
int window_tab_label_focus_textColor;
|
||||
int window_tab_borderWidth;
|
||||
int window_tab_borderColor;
|
||||
int window_tab_font;;
|
||||
|
||||
int window_font;
|
||||
int window_justify;
|
||||
|
||||
// Border
|
||||
int borderWidth;
|
||||
int borderColor;
|
||||
int bevelWidth;
|
||||
int handleWidth;
|
||||
int frameWidth;
|
||||
int Command;
|
||||
int rootCommand;
|
||||
|
||||
// Old
|
||||
int menuFont;
|
||||
int titleFont;
|
||||
|
||||
|
||||
int hash;
|
||||
};
|
||||
|
||||
void load_style(struct wb_style *config_style, const char *path);
|
||||
|
||||
#endif // BOX_STYLE
|
||||
38
include/waybox/style_defaults.h
Normal file
38
include/waybox/style_defaults.h
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/* Generated by bin2c, do not edit manually */
|
||||
|
||||
/* Contents of file style.bin */
|
||||
const long int style_bin_size = 508;
|
||||
const unsigned char style_bin[508] = {
|
||||
0x14, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x66, 0x66, 0xCC, 0xFF, 0x44, 0x44, 0x88,
|
||||
0x14, 0x04, 0x00, 0x00, 0xFF, 0x33, 0x33, 0x66, 0xFF, 0x55, 0x55, 0xAA, 0xFF, 0x22, 0x22, 0x44,
|
||||
0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0x66, 0xFF, 0x33, 0x33, 0x33, 0x00, 0x00, 0x00, 0x00,
|
||||
0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0x66, 0xFF, 0x33, 0x33, 0x33, 0xFF, 0xD9, 0xD9, 0xD9,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0x66,
|
||||
0xFF, 0x33, 0x33, 0x33, 0xFF, 0xD9, 0xD9, 0xD9, 0x24, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0xFF, 0x66, 0x66, 0x66, 0xFF, 0x33, 0x33, 0x33, 0xFF, 0xD9, 0xD9, 0xD9, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0xCC, 0xFF, 0x33, 0x33, 0x66, 0xFF, 0xFF, 0xFF, 0xFF,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0x66,
|
||||
0xFF, 0x33, 0x33, 0x33, 0xFF, 0xD9, 0xD9, 0xD9, 0xFF, 0x22, 0x22, 0x44, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0xCC, 0xFF, 0x33, 0x33, 0x66, 0xFF, 0xFF, 0xFF, 0xFF,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0xCC,
|
||||
0xFF, 0x44, 0x44, 0x88, 0x06, 0x00, 0x00, 0x00, 0xFF, 0x4D, 0x4D, 0x4D, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0x66, 0xFF, 0x33, 0x33, 0x33,
|
||||
0xFF, 0xFF, 0xFF, 0xFF, 0x24, 0x04, 0x00, 0x00, 0xFF, 0x4D, 0x4D, 0x4D, 0xFF, 0x33, 0x33, 0x33,
|
||||
0xFF, 0x99, 0x99, 0x99, 0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0xCC, 0xFF, 0x33, 0x33, 0x66,
|
||||
0x06, 0x00, 0x00, 0x00, 0xFF, 0x4D, 0x4D, 0x4D, 0x00, 0x00, 0x00, 0x00, 0x24, 0x04, 0x00, 0x00,
|
||||
0xFF, 0x66, 0x66, 0x66, 0xFF, 0x33, 0x33, 0x33, 0x24, 0x04, 0x00, 0x00, 0xFF, 0x4D, 0x4D, 0x4D,
|
||||
0xFF, 0x33, 0x33, 0x33, 0x14, 0x04, 0x00, 0x00, 0xFF, 0x44, 0x44, 0x88, 0xFF, 0x55, 0x55, 0xAA,
|
||||
0xFF, 0x22, 0x22, 0x44, 0x06, 0x00, 0x00, 0x00, 0xFF, 0x4D, 0x4D, 0x4D, 0x00, 0x00, 0x00, 0x00,
|
||||
0xFF, 0x33, 0x33, 0x33, 0x24, 0x04, 0x00, 0x00, 0xFF, 0x66, 0x66, 0x66, 0xFF, 0x33, 0x33, 0x33,
|
||||
0xFF, 0x66, 0x66, 0xCC, 0xFF, 0x4D, 0x4D, 0x4D, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00, 0xFF, 0x1A, 0x1A, 0x1A,
|
||||
0x01, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
||||
};
|
||||
44
include/waybox/util.h
Normal file
44
include/waybox/util.h
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
#ifndef _SWAY_UTIL_H
|
||||
#define _SWAY_UTIL_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
#include <cairo.h>
|
||||
|
||||
// #include <wayland-server-protocol.h>
|
||||
|
||||
/**
|
||||
* Wrap i into the range [0, max[
|
||||
*/
|
||||
int wrap(int i, int max);
|
||||
|
||||
/**
|
||||
* Given a string that represents an RGB(A) color, result will be set to a
|
||||
* uint32_t version of the color, as long as it is valid. If it is invalid,
|
||||
* then false will be returned and result will be untouched.
|
||||
*/
|
||||
bool parse_color(const char *color, uint32_t *result);
|
||||
|
||||
void color_to_rgba(float dest[static 4], uint32_t color);
|
||||
|
||||
/**
|
||||
* Given a string that represents a boolean, return the boolean value. This
|
||||
* function also takes in the current boolean value to support toggling. If
|
||||
* toggling is not desired, pass in true for current so that toggling values
|
||||
* get parsed as not true.
|
||||
*/
|
||||
bool parse_boolean(const char *boolean, bool current);
|
||||
|
||||
/**
|
||||
* Given a string that represents a floating point value, return a float.
|
||||
* Returns NAN on error.
|
||||
*/
|
||||
float parse_float(const char *value);
|
||||
|
||||
// const char *sway_wl_output_subpixel_to_string(enum wl_output_subpixel subpixel);
|
||||
|
||||
// bool sway_set_cloexec(int fd, bool cloexec);
|
||||
|
||||
void draw_gradient_rect(cairo_t *cx, int flags, int w, int h, float color[static 4], float colorTo[static 4]);
|
||||
|
||||
#endif
|
||||
|
|
@ -11,6 +11,11 @@ project(
|
|||
],
|
||||
)
|
||||
|
||||
cairo = dependency('cairo')
|
||||
pango = dependency('pango')
|
||||
pangocairo = dependency('pangocairo')
|
||||
glesv2 = dependency('glesv2')
|
||||
|
||||
add_project_arguments(
|
||||
'-Wno-unused-parameter',
|
||||
'-DWLR_USE_UNSTABLE',
|
||||
|
|
|
|||
114
styles/Artwiz
Normal file
114
styles/Artwiz
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
toolbar: raised gradient vertical
|
||||
toolbar.color: rgb:80/84/88
|
||||
toolbar.colorTo: rgb:30/34/38
|
||||
|
||||
toolbar.button: raised gradient diagonal
|
||||
toolbar.button.color: rgb:90/94/98
|
||||
toolbar.button.colorTo: rgb:20/24/28
|
||||
toolbar.button.picColor: white
|
||||
|
||||
toolbar.button.pressed: sunken gradient diagonal
|
||||
toolbar.button.pressed.color: black
|
||||
toolbar.button.pressed.colorTo: rgb:80/98/d0
|
||||
|
||||
toolbar.clock: sunken gradient diagonal
|
||||
toolbar.clock.color: rgb:10/20/30
|
||||
toolbar.clock.colorTo: rgb:70/80/90
|
||||
toolbar.clock.textColor: white
|
||||
|
||||
toolbar.label: sunken gradient diagonal
|
||||
toolbar.label.color: rgb:10/20/30
|
||||
toolbar.label.colorTo: rgb:70/80/90
|
||||
toolbar.label.textColor: white
|
||||
|
||||
toolbar.windowLabel: sunken gradient diagonal
|
||||
toolbar.windowLabel.color: rgb:10/20/30
|
||||
toolbar.windowLabel.colorTo: rgb:70/80/90
|
||||
toolbar.windowLabel.textColor: white
|
||||
|
||||
toolbar.justify: center
|
||||
|
||||
|
||||
menu.title: raised gradient diagonal
|
||||
menu.title.color: rgb:90/94/98
|
||||
menu.title.colorTo: rgb:20/24/28
|
||||
menu.title.textColor: white
|
||||
menu.title.justify: center
|
||||
|
||||
menu.frame: sunken gradient diagonal
|
||||
menu.frame.color: rgb:10/20/30
|
||||
menu.frame.colorTo: rgb:70/80/90
|
||||
menu.frame.textColor: rgb:90/a0/b0
|
||||
menu.frame.justify: center
|
||||
|
||||
menu.hilite: raised gradient diagonal
|
||||
menu.hilite.color: rgb:90/94/98
|
||||
menu.hilite.colorTo: rgb:20/24/28
|
||||
menu.hilite.textColor: white
|
||||
|
||||
menu.bullet: empty
|
||||
menu.bullet.position: right
|
||||
|
||||
|
||||
window.title.focus: raised gradient vertical
|
||||
window.title.focus.color: rgb:80/84/88
|
||||
window.title.focus.colorTo: rgb:30/34/38
|
||||
window.title.unfocus: raised vertical gradient
|
||||
window.title.unfocus.color: rgb:50/54/58
|
||||
window.title.unfocus.colorTo: black
|
||||
|
||||
window.label.focus: sunken diagonal gradient
|
||||
window.label.focus.color: rgb:10/20/30
|
||||
window.label.focus.colorTo: rgb:70/80/90
|
||||
window.label.focus.textColor: white
|
||||
window.label.unfocus: sunken gradient diagonal
|
||||
window.label.unfocus.color: black
|
||||
window.label.unfocus.colorTo: rgb:40/50/60
|
||||
window.label.unfocus.textColor: rgb:60/64/68
|
||||
|
||||
window.button.focus: raised gradient diagonal
|
||||
window.button.focus.color: rgb:90/94/98
|
||||
window.button.focus.colorTo: rgb:20/24/28
|
||||
window.button.focus.picColor: white
|
||||
window.button.unfocus: raised gradient diagonal
|
||||
window.button.unfocus.color: rgb:50/54/58
|
||||
window.button.unfocus.colorTo: black
|
||||
window.button.unfocus.picColor: rgb:70/74/78
|
||||
window.button.pressed: sunken gradient diagonal
|
||||
window.button.pressed.color: rgb:20/40/50
|
||||
window.button.pressed.colorTo: rgb:60/70/80
|
||||
|
||||
window.frame.focusColor: rgb:40/44/48
|
||||
window.frame.unfocusColor: rgb:20/24/28
|
||||
|
||||
window.handle.focus: raised gradient diagonal
|
||||
window.handle.focus.color: rgb:70/74/78
|
||||
window.handle.focus.colorTo: rgb:40/44/48
|
||||
window.handle.unfocus: raised gradient diagonal
|
||||
window.handle.unfocus.color: rgb:50/54/58
|
||||
window.handle.unfocus.colorTo: black
|
||||
|
||||
window.grip.focus: sunken diagonal gradient
|
||||
window.grip.focus.color: rgb:20/30/40
|
||||
window.grip.focus.colorTo: rgb:60/70/80
|
||||
window.grip.unfocus: sunken diagonal gradient
|
||||
window.grip.unfocus.color: black
|
||||
window.grip.unfocus.colorTo: rgb:30/40/50
|
||||
|
||||
window.justify: center
|
||||
|
||||
|
||||
borderColor: black
|
||||
|
||||
bevelWidth: 2
|
||||
borderWidth: 1
|
||||
handleWidth: 5
|
||||
|
||||
background: mod
|
||||
background.modX: 4
|
||||
background.modY: 4
|
||||
background.color: rgb:10/18/20
|
||||
background.colorTo: rgb:30/38/40
|
||||
|
||||
*Font: -*-lucidatypewriter-medium-r-*-*-*-100-*-*-*-*-*-*
|
||||
!*Font: vera-7
|
||||
3
styles/BlueFlux/Makemodule.am
Normal file
3
styles/BlueFlux/Makemodule.am
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
blueflux_styledir = $(pkgdatadir)/styles/BlueFlux
|
||||
|
||||
dist_blueflux_style_DATA = data/styles/BlueFlux/theme.cfg
|
||||
24
styles/BlueFlux/pixmaps/Makemodule.am
Normal file
24
styles/BlueFlux/pixmaps/Makemodule.am
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
blueflux_pixmaps_styledir = $(pkgdatadir)/styles/BlueFlux/pixmaps
|
||||
|
||||
dist_blueflux_pixmaps_style_DATA = \
|
||||
data/styles/BlueFlux/pixmaps/button_close_active.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_close_pressed.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_close_unfocus.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_max_active.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_max_pressed.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_max_unfocus.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_min_active.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_min_pressed.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_min_unfocus.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_stick_active.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_stick_pressed.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_stick_unfocus.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_stuck.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_stuck_unfocus.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_toolbar.xpm \
|
||||
data/styles/BlueFlux/pixmaps/button_toolbar_pressed.xpm \
|
||||
data/styles/BlueFlux/pixmaps/menu_frame.xpm \
|
||||
data/styles/BlueFlux/pixmaps/title_bar.xpm \
|
||||
data/styles/BlueFlux/pixmaps/title_bar_unfocus.xpm \
|
||||
data/styles/BlueFlux/pixmaps/toolbar.xpm \
|
||||
data/styles/BlueFlux/pixmaps/toolbar_label.xpm
|
||||
165
styles/BlueFlux/pixmaps/button_close_active.xpm
Normal file
165
styles/BlueFlux/pixmaps/button_close_active.xpm
Normal file
|
|
@ -0,0 +1,165 @@
|
|||
/* XPM */
|
||||
static char * button_close_active_xpm[] = {
|
||||
"22 22 140 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #507786",
|
||||
"& c #527684",
|
||||
"* c #647379",
|
||||
"= c #898E8F",
|
||||
"- c #989A9B",
|
||||
"; c #8D9192",
|
||||
"> c #69767B",
|
||||
", c #527481",
|
||||
"' c #507785",
|
||||
") c #D1D5D6",
|
||||
"! c #B8BBBC",
|
||||
"~ c #868686",
|
||||
"{ c #B7B7B7",
|
||||
"] c #C0C0C0",
|
||||
"^ c #BFBFBF",
|
||||
"/ c #BBBBBB",
|
||||
"( c #8E8E8E",
|
||||
"_ c #A8AAAB",
|
||||
": c #CDD1D2",
|
||||
"< c #C0C6C7",
|
||||
"[ c #B6BBBC",
|
||||
"} c #787878",
|
||||
"| c #A3A3A3",
|
||||
"1 c #AAAAAA",
|
||||
"2 c #ACACAC",
|
||||
"3 c #A7A7A7",
|
||||
"4 c #A6A6A6",
|
||||
"5 c #A4A4A4",
|
||||
"6 c #7E7E7E",
|
||||
"7 c #A2A7A8",
|
||||
"8 c #BDC3C4",
|
||||
"9 c #C2C8C9",
|
||||
"0 c #C1C7C8",
|
||||
"a c #808283",
|
||||
"b c #808080",
|
||||
"c c #8C8C8C",
|
||||
"d c #919191",
|
||||
"e c #8B8B8B",
|
||||
"f c #878787",
|
||||
"g c #828282",
|
||||
"h c #6D6E6F",
|
||||
"i c #B4B9BA",
|
||||
"j c #C5CACB",
|
||||
"k c #C0C5C6",
|
||||
"l c #616161",
|
||||
"m c #6C6C6C",
|
||||
"n c #1B1B1B",
|
||||
"o c #1E1E1E",
|
||||
"p c #7D7D7D",
|
||||
"q c #1D1D1D",
|
||||
"r c #1A1A1A",
|
||||
"s c #6A6A6A",
|
||||
"t c #5B5B5B",
|
||||
"u c #9DA1A2",
|
||||
"v c #C7CCCD",
|
||||
"w c #B6BABB",
|
||||
"x c #545454",
|
||||
"y c #636363",
|
||||
"z c #737373",
|
||||
"A c #7A7A7A",
|
||||
"B c #707070",
|
||||
"C c #656565",
|
||||
"D c #565656",
|
||||
"E c #7E8182",
|
||||
"F c #BCC0C1",
|
||||
"G c #C8CDCE",
|
||||
"H c #C9CECF",
|
||||
"I c #AFB3B4",
|
||||
"J c #525252",
|
||||
"K c #717171",
|
||||
"L c #747474",
|
||||
"M c #1C1C1C",
|
||||
"N c #646464",
|
||||
"O c #707273",
|
||||
"P c #B7BCBD",
|
||||
"Q c #CBCFD0",
|
||||
"R c #CCD0D1",
|
||||
"S c #CACECF",
|
||||
"T c #B5B9BA",
|
||||
"U c #505050",
|
||||
"V c #6D6D6D",
|
||||
"W c #4F4F4F",
|
||||
"X c #6F7172",
|
||||
"Y c #CED2D3",
|
||||
"Z c #BBBEBF",
|
||||
"` c #5B5C5C",
|
||||
" . c #5D5D5D",
|
||||
".. c #181818",
|
||||
"+. c #191919",
|
||||
"@. c #606060",
|
||||
"#. c #494A4A",
|
||||
"$. c #797B7C",
|
||||
"%. c #BCBFC0",
|
||||
"&. c #D1D4D4",
|
||||
"*. c #C5C8C8",
|
||||
"=. c #828484",
|
||||
"-. c #545555",
|
||||
";. c #595959",
|
||||
">. c #484949",
|
||||
",. c #8E9090",
|
||||
"'. c #D3D6D6",
|
||||
"). c #CED0D0",
|
||||
"!. c #ABADAD",
|
||||
"~. c #5E5F5F",
|
||||
"{. c #434343",
|
||||
"]. c #646565",
|
||||
"^. c #D6D8D8",
|
||||
"/. c #D5D7D7",
|
||||
"(. c #C6C8C8",
|
||||
"_. c #939595",
|
||||
":. c #505151",
|
||||
"<. c #5C5C5C",
|
||||
"[. c #5F5F5F",
|
||||
"}. c #3C3C3C",
|
||||
"|. c #D8DADA",
|
||||
"1. c #C1C2C2",
|
||||
"2. c #929393",
|
||||
"3. c #616262",
|
||||
"4. c #444545",
|
||||
"5. c #3C3D3D",
|
||||
"6. c #3A3A3A",
|
||||
"7. c #454646",
|
||||
"8. c #626363",
|
||||
"9. c #C1C3C3",
|
||||
"0. c #DADCDC",
|
||||
"a. c #C8C9C9",
|
||||
"b. c #7E7F7F",
|
||||
"c. c #DDDEDE",
|
||||
"d. c #DBDCDC",
|
||||
"e. c #D6D7D7",
|
||||
"f. c #CFD0D0",
|
||||
"g. c #E6E5E5",
|
||||
"h. c #E5E4E4",
|
||||
"i. c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ % % $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ $ $ & * = - ; > , ' $ $ $ $ $ $ $ ",
|
||||
") ) ) ) ) ) ! ~ { ] ] ^ / ( _ : ) ) ) ) ) ) ",
|
||||
"< < < < < [ } | 1 2 1 3 4 5 6 7 8 < < < < < ",
|
||||
"9 9 9 9 0 a b c d e f ~ f f g h i 0 9 9 9 9 ",
|
||||
"j j j j k l m n o 6 6 p q r s t u k j j j j ",
|
||||
"v v v v w x y z q q A q q B C D E F v v v v ",
|
||||
"G H H v I J y K L M M M L K N x O P v H H G ",
|
||||
"Q R R S T U l V n n B n n V y W X ! S R R Q ",
|
||||
": Y Y R Z ` ...+.s s s +.+.@.#.$.%.R Y Y : ",
|
||||
"&.&.&.&.*.=.-.s s s s s s s ;.>.,.*.&.&.&.&.",
|
||||
"'.'.'.'.).!.~. .C C C C C @.{.].!.).'.'.'.'.",
|
||||
"^.^.^.^./.(._.-.:.<.[.<.W }.-._.(./.^.^.^.^.",
|
||||
"|.|.|.|.|./.1.2.3.4.5.6.7.8.2.9./.|.|.|.|.|.",
|
||||
"0.0.0.0.0.0.^.a.!.,.b.b.,.!.a.^.0.0.0.0.0.0.",
|
||||
"c.c.c.c.c.c.c.d.e.f.a.a.f.e.d.c.c.c.c.c.c.c.",
|
||||
"g.g.g.g.g.g.g.g.g.g.h.h.g.g.g.g.g.g.g.g.g.g.",
|
||||
"i.i.i.i.i.i.i.i.i.i.i.i.i.i.i.i.i.i.i.i.i.i."};
|
||||
172
styles/BlueFlux/pixmaps/button_close_pressed.xpm
Normal file
172
styles/BlueFlux/pixmaps/button_close_pressed.xpm
Normal file
|
|
@ -0,0 +1,172 @@
|
|||
/* XPM */
|
||||
static char * button_close_pressed_xpm[] = {
|
||||
"22 22 147 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #D1D5D6",
|
||||
"& c #C8CCCD",
|
||||
"* c #989A9A",
|
||||
"= c #989898",
|
||||
"- c #9F9F9F",
|
||||
"; c #9A9B9B",
|
||||
"> c #98999A",
|
||||
", c #C4C8C8",
|
||||
"' c #D0D4D5",
|
||||
") c #C0C6C7",
|
||||
"! c #ACB0B1",
|
||||
"~ c #868686",
|
||||
"{ c #B7B7B7",
|
||||
"] c #C0C0C0",
|
||||
"^ c #BFBFBF",
|
||||
"/ c #BBBBBB",
|
||||
"( c #8F8F8F",
|
||||
"_ c #A2A6A7",
|
||||
": c #BEC4C5",
|
||||
"< c #C2C8C9",
|
||||
"[ c #B9BFBF",
|
||||
"} c #787979",
|
||||
"| c #A3A3A3",
|
||||
"1 c #7D7E7E",
|
||||
"2 c #707070",
|
||||
"3 c #999A9A",
|
||||
"4 c #A4A4A4",
|
||||
"5 c #7F7F7F",
|
||||
"6 c #ACB1B2",
|
||||
"7 c #C1C7C8",
|
||||
"8 c #C5CACB",
|
||||
"9 c #858788",
|
||||
"0 c #808080",
|
||||
"a c #8D8E8F",
|
||||
"b c #8C8D8D",
|
||||
"c c #828282",
|
||||
"d c #BEC2C3",
|
||||
"e c #C7CCCD",
|
||||
"f c #C4C9CA",
|
||||
"g c #636464",
|
||||
"h c #6C6C6C",
|
||||
"i c #818283",
|
||||
"j c #747474",
|
||||
"k c #757575",
|
||||
"l c #818282",
|
||||
"m c #6A6A6A",
|
||||
"n c #5D5D5D",
|
||||
"o c #B3B7B8",
|
||||
"p c #C9CECF",
|
||||
"q c #C8CDCE",
|
||||
"r c #BDC2C3",
|
||||
"s c #555555",
|
||||
"t c #636363",
|
||||
"u c #535353",
|
||||
"v c #565656",
|
||||
"w c #7A7A7A",
|
||||
"x c #797979",
|
||||
"y c #505050",
|
||||
"z c #656565",
|
||||
"A c #9CA0A0",
|
||||
"B c #C3C8C9",
|
||||
"C c #CACECF",
|
||||
"D c #CCD0D1",
|
||||
"E c #CBCFD0",
|
||||
"F c #BBBFC0",
|
||||
"G c #525252",
|
||||
"H c #737374",
|
||||
"I c #575757",
|
||||
"J c #595959",
|
||||
"K c #7E7E7E",
|
||||
"L c #585858",
|
||||
"M c #717272",
|
||||
"N c #646464",
|
||||
"O c #545454",
|
||||
"P c #969899",
|
||||
"Q c #C3C6C7",
|
||||
"R c #CED2D3",
|
||||
"S c #CDD1D2",
|
||||
"T c #C3C7C8",
|
||||
"U c #616161",
|
||||
"V c #848585",
|
||||
"W c #777777",
|
||||
"X c #838484",
|
||||
"Y c #A0A3A4",
|
||||
"Z c #D1D4D4",
|
||||
"` c #C8CBCB",
|
||||
" . c #6A6B6B",
|
||||
".. c #898989",
|
||||
"+. c #606060",
|
||||
"@. c #5E5E5E",
|
||||
"#. c #878787",
|
||||
"$. c #888888",
|
||||
"%. c #5E5F5F",
|
||||
"&. c #A9ACAC",
|
||||
"*. c #D3D6D6",
|
||||
"=. c #CED0D0",
|
||||
"-. c #A3A5A5",
|
||||
";. c #585959",
|
||||
">. c #494949",
|
||||
",. c #ABABAB",
|
||||
"'. c #A7A8A8",
|
||||
"). c #4A4A4A",
|
||||
"!. c #5C5C5C",
|
||||
"~. c #B3B6B6",
|
||||
"{. c #D6D8D8",
|
||||
"]. c #D3D5D5",
|
||||
"^. c #C3C5C5",
|
||||
"/. c #878888",
|
||||
"(. c #626262",
|
||||
"_. c #777878",
|
||||
":. c #A1A2A2",
|
||||
"<. c #D8DADA",
|
||||
"[. c #D0D2D2",
|
||||
"}. c #B8BABA",
|
||||
"|. c #8F9090",
|
||||
"1. c #6B6C6C",
|
||||
"2. c #5F5F5F",
|
||||
"3. c #686868",
|
||||
"4. c #808181",
|
||||
"5. c #9B9C9C",
|
||||
"6. c #DADCDC",
|
||||
"7. c #D9DBDB",
|
||||
"8. c #B9BBBB",
|
||||
"9. c #A2A3A3",
|
||||
"0. c #939494",
|
||||
"a. c #8A8B8B",
|
||||
"b. c #8D8E8E",
|
||||
"c. c #959696",
|
||||
"d. c #CFD1D1",
|
||||
"e. c #DDDEDE",
|
||||
"f. c #DBDCDC",
|
||||
"g. c #D4D5D5",
|
||||
"h. c #C7C8C8",
|
||||
"i. c #B9BABA",
|
||||
"j. c #B1B2B2",
|
||||
"k. c #E6E5E5",
|
||||
"l. c #E5E4E4",
|
||||
"m. c #E3E2E2",
|
||||
"n. c #DFDEDE",
|
||||
"o. c #DCDBDB",
|
||||
"p. c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ",
|
||||
"% % % % % % % & * = - ; > , ' % % % % % % % ",
|
||||
") ) ) ) ) ) ! ~ { ] ] ^ / ( _ : ) ) ) ) ) ) ",
|
||||
"< < < < < [ } | ; 1 2 1 3 4 5 6 7 < < < < < ",
|
||||
"8 8 8 8 8 9 0 a 2 2 2 2 2 b c } d 8 8 8 8 8 ",
|
||||
"e e e e f g h i j j j k j l m n o f e e e e ",
|
||||
"e p p q r s t u v w w x s y z v A B e p p q ",
|
||||
"C D D E F G t H I J K L s M N O P Q C D D E ",
|
||||
"D R R S T u U V x J J I W X t y Y T D R R S ",
|
||||
"Z Z Z Z ` .n ..+.@.#.n @.$.+.%.&.` Z Z Z Z ",
|
||||
"*.*.*.*.=.-.;.>.z ,.| '.z ).!.X ~.=.*.*.*.*.",
|
||||
"{.{.{.{.].^./.U z z z z z (._.:.^.].{.{.{.{.",
|
||||
"<.<.<.<.<.[.}.|.1.2.2.@.3.4.5.}.[.<.<.<.<.<.",
|
||||
"6.6.6.6.6.7.=.8.9.0.a.b.c.9.8.d.7.6.6.6.6.6.",
|
||||
"e.e.e.e.e.e.f.g.h.i.j.j.i.h.g.f.e.e.e.e.e.e.",
|
||||
"k.k.k.k.k.k.k.l.m.n.o.o.n.m.l.k.k.k.k.k.k.k.",
|
||||
"p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p."};
|
||||
129
styles/BlueFlux/pixmaps/button_close_unfocus.xpm
Normal file
129
styles/BlueFlux/pixmaps/button_close_unfocus.xpm
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
/* XPM */
|
||||
static char * button_close_unfocus_xpm[] = {
|
||||
"22 22 104 2",
|
||||
" g None",
|
||||
". g #5D5D5D",
|
||||
"+ g #7D7D7D",
|
||||
"@ g #A7A7A7",
|
||||
"# g #818181",
|
||||
"$ g #6D6D6D",
|
||||
"% g #6C6C6C",
|
||||
"& g #6F6F6F",
|
||||
"* g #8C8C8C",
|
||||
"= g #999999",
|
||||
"- g #8F8F8F",
|
||||
"; g #727272",
|
||||
"> g #6B6B6B",
|
||||
", g #D3D3D3",
|
||||
"' g #BABABA",
|
||||
") g #868686",
|
||||
"! g #B7B7B7",
|
||||
"~ g #C0C0C0",
|
||||
"{ g #BFBFBF",
|
||||
"] g #BBBBBB",
|
||||
"^ g #8E8E8E",
|
||||
"/ g #A9A9A9",
|
||||
"( g #CFCFCF",
|
||||
"_ g #C4C4C4",
|
||||
": g #B9B9B9",
|
||||
"< g #787878",
|
||||
"[ g #A3A3A3",
|
||||
"} g #AAAAAA",
|
||||
"| g #ACACAC",
|
||||
"1 g #A6A6A6",
|
||||
"2 g #A4A4A4",
|
||||
"3 g #7E7E7E",
|
||||
"4 g #A5A5A5",
|
||||
"5 g #C1C1C1",
|
||||
"6 g #C6C6C6",
|
||||
"7 g #C5C5C5",
|
||||
"8 g #808080",
|
||||
"9 g #919191",
|
||||
"0 g #8B8B8B",
|
||||
"a g #878787",
|
||||
"b g #828282",
|
||||
"c g #C8C8C8",
|
||||
"d g #C3C3C3",
|
||||
"e g #616161",
|
||||
"f g #1B1B1B",
|
||||
"g g #1E1E1E",
|
||||
"h g #1D1D1D",
|
||||
"i g #1A1A1A",
|
||||
"j g #6A6A6A",
|
||||
"k g #5B5B5B",
|
||||
"l g #9F9F9F",
|
||||
"m g #CACACA",
|
||||
"n g #B8B8B8",
|
||||
"o g #545454",
|
||||
"p g #636363",
|
||||
"q g #737373",
|
||||
"r g #7A7A7A",
|
||||
"s g #707070",
|
||||
"t g #656565",
|
||||
"u g #565656",
|
||||
"v g #BEBEBE",
|
||||
"w g #CBCBCB",
|
||||
"x g #CCCCCC",
|
||||
"y g #B1B1B1",
|
||||
"z g #525252",
|
||||
"A g #717171",
|
||||
"B g #747474",
|
||||
"C g #1C1C1C",
|
||||
"D g #646464",
|
||||
"E g #CDCDCD",
|
||||
"F g #CECECE",
|
||||
"G g #505050",
|
||||
"H g #4F4F4F",
|
||||
"I g #D0D0D0",
|
||||
"J g #BDBDBD",
|
||||
"K g #181818",
|
||||
"L g #191919",
|
||||
"M g #606060",
|
||||
"N g #494949",
|
||||
"O g #C7C7C7",
|
||||
"P g #838383",
|
||||
"Q g #595959",
|
||||
"R g #484848",
|
||||
"S g #D5D5D5",
|
||||
"T g #5E5E5E",
|
||||
"U g #434343",
|
||||
"V g #D7D7D7",
|
||||
"W g #D6D6D6",
|
||||
"X g #949494",
|
||||
"Y g #5C5C5C",
|
||||
"Z g #5F5F5F",
|
||||
"` g #3C3C3C",
|
||||
" . g #D9D9D9",
|
||||
".. g #929292",
|
||||
"+. g #444444",
|
||||
"@. g #3A3A3A",
|
||||
"#. g #454545",
|
||||
"$. g #626262",
|
||||
"%. g #C2C2C2",
|
||||
"&. g #DBDBDB",
|
||||
"*. g #DDDDDD",
|
||||
"=. g #E5E5E5",
|
||||
"-. g #E4E4E4",
|
||||
";. g #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ % % $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ $ $ % & * = - ; > % $ $ $ $ $ $ $ ",
|
||||
", , , , , , ' ) ! ~ ~ { ] ^ / ( , , , , , , ",
|
||||
"_ _ _ _ _ : < [ } | } @ 1 2 3 4 5 _ _ _ _ _ ",
|
||||
"6 6 6 6 7 # 8 * 9 0 a ) a a b $ ! 7 6 6 6 6 ",
|
||||
"c c c c d e % f g 3 3 + h i j k l d c c c c ",
|
||||
"m m m m n o p q h h r h h s t u 8 v m m m m ",
|
||||
"w x x m y z p A B C C C B A D o A ' m x x w ",
|
||||
"E F F x ! G e $ f f s f f $ p H s ' x F F E ",
|
||||
"( I I F J k . K L j j j L L M N r v F I I ( ",
|
||||
", , , , O P o j j j j j j j Q R - O , , , , ",
|
||||
"S S S S ( | T . t t t t t M U D | ( S S S S ",
|
||||
"V V V V W O X o G Y Z Y H ` o X O W V V V V ",
|
||||
" . . . . .W 5 ..e +.` @.#.$...%.W . . . . .",
|
||||
"&.&.&.&.&.&.V c | - 3 3 - | c V &.&.&.&.&.&.",
|
||||
"*.*.*.*.*.*.*.&.W ( c c ( W &.*.*.*.*.*.*.*.",
|
||||
"=.=.=.=.=.=.=.=.=.=.-.-.=.=.=.=.=.=.=.=.=.=.",
|
||||
";.;.;.;.;.;.;.;.;.;.;.;.;.;.;.;.;.;.;.;.;.;."};
|
||||
172
styles/BlueFlux/pixmaps/button_max_active.xpm
Normal file
172
styles/BlueFlux/pixmaps/button_max_active.xpm
Normal file
|
|
@ -0,0 +1,172 @@
|
|||
/* XPM */
|
||||
static char * button_max_active_xpm[] = {
|
||||
"22 22 147 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #507786",
|
||||
"& c #527684",
|
||||
"* c #647379",
|
||||
"= c #898E8F",
|
||||
"- c #989A9B",
|
||||
"; c #8D9192",
|
||||
"> c #69767B",
|
||||
", c #527481",
|
||||
"' c #507785",
|
||||
") c #D1D5D6",
|
||||
"! c #B8BBBC",
|
||||
"~ c #868686",
|
||||
"{ c #B7B7B7",
|
||||
"] c #C0C0C0",
|
||||
"^ c #BFBFBF",
|
||||
"/ c #BBBBBB",
|
||||
"( c #8E8E8E",
|
||||
"_ c #A8AAAB",
|
||||
": c #CDD1D2",
|
||||
"< c #C0C6C7",
|
||||
"[ c #B6BBBC",
|
||||
"} c #787878",
|
||||
"| c #A3A3A3",
|
||||
"1 c #A9A9A9",
|
||||
"2 c #ACACAC",
|
||||
"3 c #A8A8A8",
|
||||
"4 c #A4A4A4",
|
||||
"5 c #7E7E7E",
|
||||
"6 c #A2A7A8",
|
||||
"7 c #BDC3C4",
|
||||
"8 c #C2C8C9",
|
||||
"9 c #C1C7C8",
|
||||
"0 c #808283",
|
||||
"a c #808080",
|
||||
"b c #8C8C8C",
|
||||
"c c #909090",
|
||||
"d c #919191",
|
||||
"e c #8D8D8D",
|
||||
"f c #898989",
|
||||
"g c #828282",
|
||||
"h c #6D6E6F",
|
||||
"i c #B4B9BA",
|
||||
"j c #C5CACB",
|
||||
"k c #C0C5C6",
|
||||
"l c #616161",
|
||||
"m c #6C6C6C",
|
||||
"n c #767676",
|
||||
"o c #7F7F7F",
|
||||
"p c #2C2C2C",
|
||||
"q c #848484",
|
||||
"r c #7D7D7D",
|
||||
"s c #747474",
|
||||
"t c #6A6A6A",
|
||||
"u c #5B5B5B",
|
||||
"v c #9DA1A2",
|
||||
"w c #C7CCCD",
|
||||
"x c #B6BABB",
|
||||
"y c #545454",
|
||||
"z c #636363",
|
||||
"A c #727272",
|
||||
"B c #2B2B2B",
|
||||
"C c #7C7C7C",
|
||||
"D c #707070",
|
||||
"E c #656565",
|
||||
"F c #565656",
|
||||
"G c #7E8182",
|
||||
"H c #BCC0C1",
|
||||
"I c #C8CDCE",
|
||||
"J c #C9CECF",
|
||||
"K c #AFB3B4",
|
||||
"L c #525252",
|
||||
"M c #737373",
|
||||
"N c #292929",
|
||||
"O c #2A2A2A",
|
||||
"P c #717171",
|
||||
"Q c #646464",
|
||||
"R c #707373",
|
||||
"S c #B7BCBD",
|
||||
"T c #CBCFD0",
|
||||
"U c #CCD0D1",
|
||||
"V c #B5B9BA",
|
||||
"W c #505050",
|
||||
"X c #272727",
|
||||
"Y c #282828",
|
||||
"Z c #777777",
|
||||
"` c #262626",
|
||||
" . c #4F4F4F",
|
||||
".. c #707273",
|
||||
"+. c #CACECF",
|
||||
"@. c #CED2D3",
|
||||
"#. c #BBBEBF",
|
||||
"$. c #5B5C5C",
|
||||
"%. c #5D5D5D",
|
||||
"&. c #252525",
|
||||
"*. c #606060",
|
||||
"=. c #4A4A4A",
|
||||
"-. c #797C7C",
|
||||
";. c #BCBFC0",
|
||||
">. c #D1D4D4",
|
||||
",. c #C5C8C8",
|
||||
"'. c #828484",
|
||||
"). c #545555",
|
||||
"!. c #676767",
|
||||
"~. c #686868",
|
||||
"{. c #595959",
|
||||
"]. c #484949",
|
||||
"^. c #8E9090",
|
||||
"/. c #D3D6D6",
|
||||
"(. c #CED0D0",
|
||||
"_. c #ABADAD",
|
||||
":. c #5E5F5F",
|
||||
"<. c #434343",
|
||||
"[. c #646565",
|
||||
"}. c #D6D8D8",
|
||||
"|. c #D5D7D7",
|
||||
"1. c #C6C8C8",
|
||||
"2. c #939595",
|
||||
"3. c #505151",
|
||||
"4. c #5C5C5C",
|
||||
"5. c #5F5F5F",
|
||||
"6. c #3C3C3C",
|
||||
"7. c #D8DADA",
|
||||
"8. c #C1C2C2",
|
||||
"9. c #929393",
|
||||
"0. c #616262",
|
||||
"a. c #444545",
|
||||
"b. c #3C3D3D",
|
||||
"c. c #3A3A3A",
|
||||
"d. c #454646",
|
||||
"e. c #626363",
|
||||
"f. c #C1C3C3",
|
||||
"g. c #DADCDC",
|
||||
"h. c #C8C9C9",
|
||||
"i. c #7E7F7F",
|
||||
"j. c #DDDEDE",
|
||||
"k. c #DBDCDC",
|
||||
"l. c #D6D7D7",
|
||||
"m. c #CFD0D0",
|
||||
"n. c #E6E5E5",
|
||||
"o. c #E5E4E4",
|
||||
"p. c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ % % $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ $ $ & * = - ; > , ' $ $ $ $ $ $ $ ",
|
||||
") ) ) ) ) ) ! ~ { ] ] ^ / ( _ : ) ) ) ) ) ) ",
|
||||
"< < < < < [ } | 1 2 1 1 3 4 5 6 7 < < < < < ",
|
||||
"8 8 8 8 9 0 a b c d c ( e f g h i 9 8 8 8 8 ",
|
||||
"j j j j k l m n o ~ p q r s t u v k j j j j ",
|
||||
"w w w w x y z A 5 B B B C D E F G H w w w w ",
|
||||
"I J J I K L z M N O O O N P Q y R S w J J J ",
|
||||
"T U U T V W l X Y Y Z Y Y ` z ...! +.U U U ",
|
||||
": @.@.: #.$.%.&.` D D D ` &.*.=.-.;.U @.@.@.",
|
||||
">.>.>.>.,.'.).!.t t t t t ~.{.].^.,.>.>.>.>.",
|
||||
"/./././.(._.:.%.E E E E E *.<.[._.(././././.",
|
||||
"}.}.}.}.|.1.2.).3.4.5.4. .6.).2.1.|.}.}.}.}.",
|
||||
"7.7.7.7.7.|.8.9.0.a.b.c.d.e.9.f.|.7.7.7.7.7.",
|
||||
"g.g.g.g.g.g.}.h._.^.i.i.^._.h.}.g.g.g.g.g.g.",
|
||||
"j.j.j.j.j.j.j.k.l.m.h.h.m.l.k.j.j.j.j.j.j.j.",
|
||||
"n.n.n.n.n.n.n.n.n.n.o.o.n.n.n.n.n.n.n.n.n.n.",
|
||||
"p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p.p."};
|
||||
171
styles/BlueFlux/pixmaps/button_max_pressed.xpm
Normal file
171
styles/BlueFlux/pixmaps/button_max_pressed.xpm
Normal file
|
|
@ -0,0 +1,171 @@
|
|||
/* XPM */
|
||||
static char * button_max_pressed_xpm[] = {
|
||||
"22 22 146 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #D1D5D6",
|
||||
"& c #C8CCCD",
|
||||
"* c #989A9A",
|
||||
"= c #989898",
|
||||
"- c #9F9F9F",
|
||||
"; c #9A9B9B",
|
||||
"> c #98999A",
|
||||
", c #C4C8C8",
|
||||
"' c #D0D4D5",
|
||||
") c #C0C6C7",
|
||||
"! c #ACB0B1",
|
||||
"~ c #868686",
|
||||
"{ c #B7B7B7",
|
||||
"] c #C0C0C0",
|
||||
"^ c #BFBFBF",
|
||||
"/ c #BBBBBB",
|
||||
"( c #8F8F8F",
|
||||
"_ c #A2A6A7",
|
||||
": c #BEC4C5",
|
||||
"< c #C2C8C9",
|
||||
"[ c #B9BFBF",
|
||||
"} c #787979",
|
||||
"| c #A3A3A3",
|
||||
"1 c #7D7E7E",
|
||||
"2 c #707070",
|
||||
"3 c #999A9A",
|
||||
"4 c #A4A4A4",
|
||||
"5 c #7F7F7F",
|
||||
"6 c #ACB1B2",
|
||||
"7 c #C1C7C8",
|
||||
"8 c #C5CACB",
|
||||
"9 c #858788",
|
||||
"0 c #808080",
|
||||
"a c #8D8E8F",
|
||||
"b c #8C8D8D",
|
||||
"c c #828282",
|
||||
"d c #BEC2C3",
|
||||
"e c #C7CCCD",
|
||||
"f c #C4C9CA",
|
||||
"g c #636464",
|
||||
"h c #6C6C6C",
|
||||
"i c #818283",
|
||||
"j c #747474",
|
||||
"k c #585858",
|
||||
"l c #757575",
|
||||
"m c #818282",
|
||||
"n c #6A6A6A",
|
||||
"o c #5D5D5D",
|
||||
"p c #B3B7B8",
|
||||
"q c #C8CDCE",
|
||||
"r c #C9CECF",
|
||||
"s c #BDC2C3",
|
||||
"t c #555555",
|
||||
"u c #636363",
|
||||
"v c #787878",
|
||||
"w c #5C5C5C",
|
||||
"x c #5B5B5B",
|
||||
"y c #727272",
|
||||
"z c #656565",
|
||||
"A c #565656",
|
||||
"B c #9CA0A0",
|
||||
"C c #CBCFD0",
|
||||
"D c #CCD0D1",
|
||||
"E c #CACECF",
|
||||
"F c #BBBFC0",
|
||||
"G c #525252",
|
||||
"H c #737373",
|
||||
"I c #5E5E5E",
|
||||
"J c #5A5A5A",
|
||||
"K c #717272",
|
||||
"L c #646464",
|
||||
"M c #545454",
|
||||
"N c #969899",
|
||||
"O c #C4C7C8",
|
||||
"P c #CDD1D2",
|
||||
"Q c #CED2D3",
|
||||
"R c #C3C7C8",
|
||||
"S c #535353",
|
||||
"T c #616161",
|
||||
"U c #606161",
|
||||
"V c #595959",
|
||||
"W c #5F5F5F",
|
||||
"X c #505050",
|
||||
"Y c #A0A3A4",
|
||||
"Z c #C4C8C9",
|
||||
"` c #D1D4D4",
|
||||
" . c #C8CBCB",
|
||||
".. c #6A6B6B",
|
||||
"+. c #626363",
|
||||
"@. c #888888",
|
||||
"#. c #878787",
|
||||
"$. c #626262",
|
||||
"%. c #606060",
|
||||
"&. c #5E5F5F",
|
||||
"*. c #A9ACAC",
|
||||
"=. c #D3D6D6",
|
||||
"-. c #CED0D0",
|
||||
";. c #A3A5A5",
|
||||
">. c #585959",
|
||||
",. c #676767",
|
||||
"'. c #949595",
|
||||
"). c #ABABAB",
|
||||
"!. c #A7A8A8",
|
||||
"~. c #939494",
|
||||
"{. c #686868",
|
||||
"]. c #838484",
|
||||
"^. c #B3B6B6",
|
||||
"/. c #D6D8D8",
|
||||
"(. c #D3D5D5",
|
||||
"_. c #C3C5C5",
|
||||
":. c #878888",
|
||||
"<. c #777878",
|
||||
"[. c #A1A2A2",
|
||||
"}. c #D8DADA",
|
||||
"|. c #D0D2D2",
|
||||
"1. c #B8BABA",
|
||||
"2. c #8F9090",
|
||||
"3. c #6B6C6C",
|
||||
"4. c #808181",
|
||||
"5. c #9B9C9C",
|
||||
"6. c #DADCDC",
|
||||
"7. c #D9DBDB",
|
||||
"8. c #B9BBBB",
|
||||
"9. c #A2A3A3",
|
||||
"0. c #8A8B8B",
|
||||
"a. c #8D8E8E",
|
||||
"b. c #959696",
|
||||
"c. c #CFD1D1",
|
||||
"d. c #DDDEDE",
|
||||
"e. c #DBDCDC",
|
||||
"f. c #D4D5D5",
|
||||
"g. c #C7C8C8",
|
||||
"h. c #B9BABA",
|
||||
"i. c #B1B2B2",
|
||||
"j. c #E6E5E5",
|
||||
"k. c #E5E4E4",
|
||||
"l. c #E3E2E2",
|
||||
"m. c #DFDEDE",
|
||||
"n. c #DCDBDB",
|
||||
"o. c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ",
|
||||
"% % % % % % % & * = - ; > , ' % % % % % % % ",
|
||||
") ) ) ) ) ) ! ~ { ] ] ^ / ( _ : ) ) ) ) ) ) ",
|
||||
"< < < < < [ } | ; 1 2 1 3 4 5 6 7 < < < < < ",
|
||||
"8 8 8 8 8 9 0 a 2 2 2 2 2 b c } d 8 8 8 8 8 ",
|
||||
"e e e e f g h i j j k l j m n o p f e e e e ",
|
||||
"q r r e s t u l v w w x v y z A B f e r r r ",
|
||||
"C D D E F G u H w I I o J K L M N O E D D D ",
|
||||
"P Q Q D R S T U J o 5 x V W u X Y Z D Q Q Q ",
|
||||
"` ` ` ` ...o +.L @.#.~ $.+.%.&.*. .` ` ` ` ",
|
||||
"=.=.=.=.-.;.>.,.'.).| !.~.{.w ].^.-.=.=.=.=.",
|
||||
"/./././.(._.:.T z z z z z $.<.[._.(././././.",
|
||||
"}.}.}.}.}.|.1.2.3.W W I {.4.5.1.|.}.}.}.}.}.",
|
||||
"6.6.6.6.6.7.-.8.9.~.0.a.b.9.8.c.7.6.6.6.6.6.",
|
||||
"d.d.d.d.d.d.e.f.g.h.i.i.h.g.f.e.d.d.d.d.d.d.",
|
||||
"j.j.j.j.j.j.j.k.l.m.n.n.m.l.k.j.j.j.j.j.j.j.",
|
||||
"o.o.o.o.o.o.o.o.o.o.o.o.o.o.o.o.o.o.o.o.o.o."};
|
||||
137
styles/BlueFlux/pixmaps/button_max_unfocus.xpm
Normal file
137
styles/BlueFlux/pixmaps/button_max_unfocus.xpm
Normal file
|
|
@ -0,0 +1,137 @@
|
|||
/* XPM */
|
||||
static char * button_max_unfocus_xpm[] = {
|
||||
"22 22 112 2",
|
||||
" g None",
|
||||
". g #5D5D5D",
|
||||
"+ g #7D7D7D",
|
||||
"@ g #A7A7A7",
|
||||
"# g #818181",
|
||||
"$ g #6D6D6D",
|
||||
"% g #6C6C6C",
|
||||
"& g #6F6F6F",
|
||||
"* g #8C8C8C",
|
||||
"= g #999999",
|
||||
"- g #8F8F8F",
|
||||
"; g #727272",
|
||||
"> g #6B6B6B",
|
||||
", g #D3D3D3",
|
||||
"' g #BABABA",
|
||||
") g #868686",
|
||||
"! g #B7B7B7",
|
||||
"~ g #C0C0C0",
|
||||
"{ g #BFBFBF",
|
||||
"] g #BBBBBB",
|
||||
"^ g #8E8E8E",
|
||||
"/ g #A9A9A9",
|
||||
"( g #CFCFCF",
|
||||
"_ g #C4C4C4",
|
||||
": g #B9B9B9",
|
||||
"< g #787878",
|
||||
"[ g #A3A3A3",
|
||||
"} g #ACACAC",
|
||||
"| g #A8A8A8",
|
||||
"1 g #A4A4A4",
|
||||
"2 g #7E7E7E",
|
||||
"3 g #A5A5A5",
|
||||
"4 g #C1C1C1",
|
||||
"5 g #C6C6C6",
|
||||
"6 g #C5C5C5",
|
||||
"7 g #808080",
|
||||
"8 g #909090",
|
||||
"9 g #919191",
|
||||
"0 g #8D8D8D",
|
||||
"a g #898989",
|
||||
"b g #828282",
|
||||
"c g #C8C8C8",
|
||||
"d g #C3C3C3",
|
||||
"e g #616161",
|
||||
"f g #767676",
|
||||
"g g #7F7F7F",
|
||||
"h g #2C2C2C",
|
||||
"i g #848484",
|
||||
"j g #747474",
|
||||
"k g #6A6A6A",
|
||||
"l g #5B5B5B",
|
||||
"m g #9F9F9F",
|
||||
"n g #CACACA",
|
||||
"o g #B8B8B8",
|
||||
"p g #545454",
|
||||
"q g #636363",
|
||||
"r g #2B2B2B",
|
||||
"s g #7C7C7C",
|
||||
"t g #707070",
|
||||
"u g #656565",
|
||||
"v g #565656",
|
||||
"w g #BEBEBE",
|
||||
"x g #CBCBCB",
|
||||
"y g #CCCCCC",
|
||||
"z g #B1B1B1",
|
||||
"A g #525252",
|
||||
"B g #737373",
|
||||
"C g #292929",
|
||||
"D g #2A2A2A",
|
||||
"E g #717171",
|
||||
"F g #646464",
|
||||
"G g #CDCDCD",
|
||||
"H g #CECECE",
|
||||
"I g #505050",
|
||||
"J g #272727",
|
||||
"K g #282828",
|
||||
"L g #777777",
|
||||
"M g #262626",
|
||||
"N g #4F4F4F",
|
||||
"O g #D0D0D0",
|
||||
"P g #BDBDBD",
|
||||
"Q g #252525",
|
||||
"R g #606060",
|
||||
"S g #4A4A4A",
|
||||
"T g #7B7B7B",
|
||||
"U g #C7C7C7",
|
||||
"V g #838383",
|
||||
"W g #676767",
|
||||
"X g #686868",
|
||||
"Y g #595959",
|
||||
"Z g #484848",
|
||||
"` g #D5D5D5",
|
||||
" . g #5E5E5E",
|
||||
".. g #434343",
|
||||
"+. g #D7D7D7",
|
||||
"@. g #D6D6D6",
|
||||
"#. g #949494",
|
||||
"$. g #5C5C5C",
|
||||
"%. g #5F5F5F",
|
||||
"&. g #3C3C3C",
|
||||
"*. g #D9D9D9",
|
||||
"=. g #929292",
|
||||
"-. g #444444",
|
||||
";. g #3A3A3A",
|
||||
">. g #454545",
|
||||
",. g #626262",
|
||||
"'. g #C2C2C2",
|
||||
"). g #DBDBDB",
|
||||
"!. g #DDDDDD",
|
||||
"~. g #E5E5E5",
|
||||
"{. g #E4E4E4",
|
||||
"]. g #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ % % $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ $ $ % & * = - ; > % $ $ $ $ $ $ $ ",
|
||||
", , , , , , ' ) ! ~ ~ { ] ^ / ( , , , , , , ",
|
||||
"_ _ _ _ _ : < [ / } / / | 1 2 3 4 _ _ _ _ _ ",
|
||||
"5 5 5 5 6 # 7 * 8 9 8 ^ 0 a b $ ! 6 5 5 5 5 ",
|
||||
"c c c c d e % f g ) h i + j k l m d c c c c ",
|
||||
"n n n n o p q ; 2 r r r s t u v 7 w n n n n ",
|
||||
"x y y x z A q B C D D D C E F p ; ' n y y y ",
|
||||
"G H H G ! I e J K K L K K M q N E ' y H H H ",
|
||||
"( O O ( P l . Q M t t t M Q R S T w H O O O ",
|
||||
", , , , U V p W k k k k k X Y Z - U , , , , ",
|
||||
"` ` ` ` ( } .. u u u u u R ..F } ( ` ` ` ` ",
|
||||
"+.+.+.+.@.U #.p I $.%.$.N &.p #.U @.+.+.+.+.",
|
||||
"*.*.*.*.*.@.4 =.e -.&.;.>.,.=.'.@.*.*.*.*.*.",
|
||||
").).).).).).+.c } - 2 2 - } c +.).).).).).).",
|
||||
"!.!.!.!.!.!.!.).@.( c c ( @.).!.!.!.!.!.!.!.",
|
||||
"~.~.~.~.~.~.~.~.~.~.{.{.~.~.~.~.~.~.~.~.~.~.",
|
||||
"].].].].].].].].].].].].].].].].].].].].].]."};
|
||||
198
styles/BlueFlux/pixmaps/button_min_active.xpm
Normal file
198
styles/BlueFlux/pixmaps/button_min_active.xpm
Normal file
|
|
@ -0,0 +1,198 @@
|
|||
/* XPM */
|
||||
static char * button_min_active_xpm[] = {
|
||||
"22 22 173 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #507786",
|
||||
"& c #557C8B",
|
||||
"* c #567A87",
|
||||
"= c #65757B",
|
||||
"- c #8A8E90",
|
||||
"; c #989A9B",
|
||||
"> c #8E9193",
|
||||
", c #6A787D",
|
||||
"' c #557784",
|
||||
") c #547B89",
|
||||
"! c #5A828F",
|
||||
"~ c #5C7B85",
|
||||
"{ c #7E8181",
|
||||
"] c #B7B7B7",
|
||||
"^ c #C0C0C0",
|
||||
"/ c #BFBFBF",
|
||||
"( c #BBBBBB",
|
||||
"_ c #8A8B8C",
|
||||
": c #59747C",
|
||||
"< c #587F8C",
|
||||
"[ c #D1D5D6",
|
||||
"} c #5E8693",
|
||||
"| c #5D818D",
|
||||
"1 c #717475",
|
||||
"2 c #A3A3A3",
|
||||
"3 c #A7A7A7",
|
||||
"4 c #A5A5A5",
|
||||
"5 c #A4A4A4",
|
||||
"6 c #7B7C7C",
|
||||
"7 c #4C6B76",
|
||||
"8 c #CED2D3",
|
||||
"9 c #C0C6C7",
|
||||
"0 c #638B98",
|
||||
"a c #628A97",
|
||||
"b c #5D6C71",
|
||||
"c c #808080",
|
||||
"d c #8A8A8A",
|
||||
"e c #8B8B8B",
|
||||
"f c #888888",
|
||||
"g c #878787",
|
||||
"h c #868686",
|
||||
"i c #828282",
|
||||
"j c #707171",
|
||||
"k c #B4B9BA",
|
||||
"l c #C1C7C8",
|
||||
"m c #C2C8C9",
|
||||
"n c #67909C",
|
||||
"o c #648C98",
|
||||
"p c #5A5D5E",
|
||||
"q c #6C6C6C",
|
||||
"r c #747474",
|
||||
"s c #797979",
|
||||
"t c #7E7E7E",
|
||||
"u c #7F7F7F",
|
||||
"v c #7B7B7B",
|
||||
"w c #777777",
|
||||
"x c #717171",
|
||||
"y c #6A6A6A",
|
||||
"z c #5B5B5B",
|
||||
"A c #9DA1A2",
|
||||
"B c #C0C5C6",
|
||||
"C c #C5CACB",
|
||||
"D c #6C95A0",
|
||||
"E c #658A93",
|
||||
"F c #545454",
|
||||
"G c #636363",
|
||||
"H c #272727",
|
||||
"I c #2A2A2A",
|
||||
"J c #7D7D7D",
|
||||
"K c #292929",
|
||||
"L c #262626",
|
||||
"M c #656565",
|
||||
"N c #565656",
|
||||
"O c #7E8182",
|
||||
"P c #BCC0C1",
|
||||
"Q c #C7CCCD",
|
||||
"R c #7099A5",
|
||||
"S c #6F98A4",
|
||||
"T c #648791",
|
||||
"U c #525252",
|
||||
"V c #7C7C7C",
|
||||
"W c #646464",
|
||||
"X c #707373",
|
||||
"Y c #B7BCBD",
|
||||
"Z c #C8CDCE",
|
||||
"` c #C9CECF",
|
||||
" . c #759EA9",
|
||||
".. c #749DA8",
|
||||
"+. c #688D97",
|
||||
"@. c #4D4E4F",
|
||||
"#. c #616161",
|
||||
"$. c #282828",
|
||||
"%. c #4F4F4F",
|
||||
"&. c #707273",
|
||||
"*. c #B8BBBC",
|
||||
"=. c #CBCFD0",
|
||||
"-. c #CCD0D1",
|
||||
";. c #7AA4AD",
|
||||
">. c #79A3AC",
|
||||
",. c #6F959E",
|
||||
"'. c #4B5354",
|
||||
"). c #5D5D5D",
|
||||
"!. c #6F6F6F",
|
||||
"~. c #757575",
|
||||
"{. c #6E6E6E",
|
||||
"]. c #606060",
|
||||
"^. c #4A4A4A",
|
||||
"/. c #797C7C",
|
||||
"(. c #BCBFC0",
|
||||
"_. c #CDD1D2",
|
||||
":. c #7EA8B1",
|
||||
"<. c #779EA7",
|
||||
"[. c #536B70",
|
||||
"}. c #535454",
|
||||
"|. c #696969",
|
||||
"1. c #242424",
|
||||
"2. c #595959",
|
||||
"3. c #484949",
|
||||
"4. c #8E9090",
|
||||
"5. c #C5C8C8",
|
||||
"6. c #D1D4D4",
|
||||
"7. c #81ADB5",
|
||||
"8. c #7DA8B0",
|
||||
"9. c #688C92",
|
||||
"0. c #445254",
|
||||
"a. c #5F5F5F",
|
||||
"b. c #727272",
|
||||
"c. c #626262",
|
||||
"d. c #434343",
|
||||
"e. c #646565",
|
||||
"f. c #ABADAD",
|
||||
"g. c #CED0D0",
|
||||
"h. c #D3D6D6",
|
||||
"i. c #80ACB4",
|
||||
"j. c #77A0A8",
|
||||
"k. c #4D6A6F",
|
||||
"l. c #4F5253",
|
||||
"m. c #545555",
|
||||
"n. c #3D3D3D",
|
||||
"o. c #939595",
|
||||
"p. c #C6C8C8",
|
||||
"q. c #D5D7D7",
|
||||
"r. c #D6D8D8",
|
||||
"s. c #7EA9B1",
|
||||
"t. c #6F99A0",
|
||||
"u. c #B1B8B9",
|
||||
"v. c #929393",
|
||||
"w. c #616262",
|
||||
"x. c #444545",
|
||||
"y. c #3D3E3E",
|
||||
"z. c #3B3B3B",
|
||||
"A. c #454646",
|
||||
"B. c #626363",
|
||||
"C. c #C1C3C3",
|
||||
"D. c #D8DADA",
|
||||
"E. c #719BA2",
|
||||
"F. c #C6CED0",
|
||||
"G. c #C8C9C9",
|
||||
"H. c #7E7F7F",
|
||||
"I. c #DADCDC",
|
||||
"J. c #DDDEDE",
|
||||
"K. c #DBDCDC",
|
||||
"L. c #D6D7D7",
|
||||
"M. c #CFD0D0",
|
||||
"N. c #E6E5E5",
|
||||
"O. c #E5E4E4",
|
||||
"P. c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ % % $ $ $ $ $ $ $ $ $ $ ",
|
||||
"& & & & & & & * = - ; > , ' ) & & $ $ $ $ $ ",
|
||||
"! ! ! ! ! ! ~ { ] ^ ^ / ( _ : < $ [ [ [ [ [ ",
|
||||
"} } } } } | 1 2 3 3 2 2 4 5 6 7 8 9 9 9 9 9 ",
|
||||
"0 0 0 0 a b c d e f g h g g i j k l m m m m ",
|
||||
"n n n n o p q r s t u v w x y z A B C C C C ",
|
||||
"D D D D E F G H I t t J K L M N O P Q Q Q Q ",
|
||||
"R R R S T U G H K I V I K L W F X Y Z ` ` ` ",
|
||||
" . . ...+.@.#.x $.$.$.$.$.x G %.&.*.=.-.-.-.",
|
||||
";.;.;.>.,.'.).!.r L L L ~.{.].^./.(._.8 8 8 ",
|
||||
":.:.:.:.<.[.}.|.x r 1.r x y 2.3.4.5.6.6.6.6.",
|
||||
"7.7.7.7.8.9.0.a.q x b.x q c.d.e.f.g.h.h.h.h.",
|
||||
"7.7.7.7.i.j.k.l.m.M y M F n.m.o.p.q.r.r.r.r.",
|
||||
"s.s.s.s.s.t.u.v.w.x.y.z.A.B.v.C.q.D.D.D.D.D.",
|
||||
"E.E.E.E.E.F.r.G.f.4.H.H.4.f.G.r.I.I.I.I.I.I.",
|
||||
"F.F.F.F.F.J.J.K.L.M.G.G.M.L.K.J.J.J.J.J.J.J.",
|
||||
"N.N.N.N.N.N.N.N.N.N.O.O.N.N.N.N.N.N.N.N.N.N.",
|
||||
"P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P.P."};
|
||||
194
styles/BlueFlux/pixmaps/button_min_pressed.xpm
Normal file
194
styles/BlueFlux/pixmaps/button_min_pressed.xpm
Normal file
|
|
@ -0,0 +1,194 @@
|
|||
/* XPM */
|
||||
static char * button_min_pressed_xpm[] = {
|
||||
"22 22 169 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #557C8B",
|
||||
"& c #5A828F",
|
||||
"* c #5B808C",
|
||||
"= c #68787D",
|
||||
"- c #8A8F90",
|
||||
"; c #999B9C",
|
||||
"> c #8F9394",
|
||||
", c #6D7C80",
|
||||
"' c #5B7E89",
|
||||
") c #59818E",
|
||||
"! c #587F8C",
|
||||
"~ c #D1D5D6",
|
||||
"{ c #5E8693",
|
||||
"] c #5F7E89",
|
||||
"^ c #7F8283",
|
||||
"/ c #B7B7B7",
|
||||
"( c #C0C0C0",
|
||||
"_ c #BFBFBF",
|
||||
": c #BBBBBB",
|
||||
"< c #8B8C8D",
|
||||
"[ c #5E7A83",
|
||||
"} c #4B6A75",
|
||||
"| c #CED2D3",
|
||||
"1 c #C0C6C7",
|
||||
"2 c #638B98",
|
||||
"3 c #628793",
|
||||
"4 c #717475",
|
||||
"5 c #A3A3A3",
|
||||
"6 c #838C8F",
|
||||
"7 c #6A7072",
|
||||
"8 c #6A6A6A",
|
||||
"9 c #828B8E",
|
||||
"0 c #A4A4A4",
|
||||
"a c #7B7C7C",
|
||||
"b c #B6B9BA",
|
||||
"c c #C4C9CA",
|
||||
"d c #C1C7C8",
|
||||
"e c #C2C8C9",
|
||||
"f c #67909C",
|
||||
"g c #607175",
|
||||
"h c #808080",
|
||||
"i c #7B8385",
|
||||
"j c #707070",
|
||||
"k c #798184",
|
||||
"l c #828282",
|
||||
"m c #5C5C5C",
|
||||
"n c #BFC4C5",
|
||||
"o c #C5CACB",
|
||||
"p c #6C95A0",
|
||||
"q c #6A939E",
|
||||
"r c #5B5F60",
|
||||
"s c #6C6C6C",
|
||||
"t c #70787A",
|
||||
"u c #747474",
|
||||
"v c #757575",
|
||||
"w c #616161",
|
||||
"x c #595959",
|
||||
"y c #B3B7B8",
|
||||
"z c #C7CCCD",
|
||||
"A c #7099A5",
|
||||
"B c #6C919C",
|
||||
"C c #555555",
|
||||
"D c #636363",
|
||||
"E c #555656",
|
||||
"F c #7A7A7A",
|
||||
"G c #797979",
|
||||
"H c #525252",
|
||||
"I c #656565",
|
||||
"J c #565656",
|
||||
"K c #9CA0A0",
|
||||
"L c #C9CECF",
|
||||
"M c #759EA9",
|
||||
"N c #6E939C",
|
||||
"O c #545555",
|
||||
"P c #5B5B5B",
|
||||
"Q c #5D5D5D",
|
||||
"R c #7E7E7E",
|
||||
"S c #646464",
|
||||
"T c #545454",
|
||||
"U c #969899",
|
||||
"V c #C4C7C8",
|
||||
"W c #CCD0D1",
|
||||
"X c #7AA4AD",
|
||||
"Y c #749CA4",
|
||||
"Z c #4F5151",
|
||||
"` c #747C7E",
|
||||
" . c #5A5A5A",
|
||||
".. c #5E5E5E",
|
||||
"+. c #5F5F5F",
|
||||
"@. c #838484",
|
||||
"#. c #505050",
|
||||
"$. c #A0A3A4",
|
||||
"%. c #C4C8C9",
|
||||
"&. c #7EA8B1",
|
||||
"*. c #79A1AA",
|
||||
"=. c #545F62",
|
||||
"-. c #788082",
|
||||
";. c #8B8B8B",
|
||||
">. c #878787",
|
||||
",. c #888888",
|
||||
"'. c #606060",
|
||||
"). c #5E5F5F",
|
||||
"!. c #A9ACAC",
|
||||
"~. c #C8CBCB",
|
||||
"{. c #D1D4D4",
|
||||
"]. c #81ADB5",
|
||||
"^. c #7DA8B0",
|
||||
"/. c #68888E",
|
||||
"(. c #565758",
|
||||
"_. c #676767",
|
||||
":. c #7D7D7D",
|
||||
"<. c #9C9C9C",
|
||||
"[. c #9A9A9A",
|
||||
"}. c #989898",
|
||||
"|. c #686868",
|
||||
"1. c #B3B6B6",
|
||||
"2. c #CED0D0",
|
||||
"3. c #D3D6D6",
|
||||
"4. c #7FAAB2",
|
||||
"5. c #759EA5",
|
||||
"6. c #53686C",
|
||||
"7. c #626262",
|
||||
"8. c #777878",
|
||||
"9. c #A1A2A2",
|
||||
"0. c #C3C5C5",
|
||||
"a. c #D3D5D5",
|
||||
"b. c #D6D8D8",
|
||||
"c. c #7EA9B1",
|
||||
"d. c #6B939A",
|
||||
"e. c #979D9E",
|
||||
"f. c #8F9090",
|
||||
"g. c #6D6E6E",
|
||||
"h. c #6B6B6B",
|
||||
"i. c #808181",
|
||||
"j. c #9B9C9C",
|
||||
"k. c #B8BABA",
|
||||
"l. c #D0D2D2",
|
||||
"m. c #D8DADA",
|
||||
"n. c #719BA2",
|
||||
"o. c #C5CDCF",
|
||||
"p. c #CBCCCC",
|
||||
"q. c #B9BBBB",
|
||||
"r. c #A2A3A3",
|
||||
"s. c #939494",
|
||||
"t. c #8A8B8B",
|
||||
"u. c #8D8E8E",
|
||||
"v. c #959696",
|
||||
"w. c #CFD1D1",
|
||||
"x. c #D9DBDB",
|
||||
"y. c #DADCDC",
|
||||
"z. c #C6CED0",
|
||||
"A. c #DDDEDE",
|
||||
"B. c #DBDCDC",
|
||||
"C. c #D4D5D5",
|
||||
"D. c #C7C8C8",
|
||||
"E. c #B9BABA",
|
||||
"F. c #B1B2B2",
|
||||
"G. c #E6E5E5",
|
||||
"H. c #E5E4E4",
|
||||
"I. c #E3E2E2",
|
||||
"J. c #DFDEDE",
|
||||
"K. c #DCDBDB",
|
||||
"L. c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ",
|
||||
"% % % % % % % % % % % % % % % % % $ $ $ $ $ ",
|
||||
"& & & & & & & * = - ; > , ' ) ! $ ~ ~ ~ ~ ~ ",
|
||||
"{ { { { { { ] ^ / ( ( _ : < [ } | 1 1 1 1 1 ",
|
||||
"2 2 2 2 2 3 4 5 6 7 8 7 9 0 a b c d e e e e ",
|
||||
"f f f f f g h i j j j j j k l m n o o o o o ",
|
||||
"p p p p q r s t u u u v u w 8 x y c z z z z ",
|
||||
"A A A A B C D E x F F G x H I J K c L L L L ",
|
||||
"M M M M N H D O P Q R Q x H S T U V W W W W ",
|
||||
"X X X X Y Z w ` ...+.m x @.D #.$.%.| | | | ",
|
||||
"&.&.&.&.*.=.Q -.;.S S D >.,.'.).!.~.{.{.{.{.",
|
||||
"].].].].^./.(._.:.<.[.}.:.|.m @.1.2.3.3.3.3.",
|
||||
"].].].].4.5.6.Q I I I I I 7.8.9.0.a.b.b.b.b.",
|
||||
"c.c.c.c.c.d.e.f.g.S I D h.i.j.k.l.m.m.m.m.m.",
|
||||
"n.n.n.n.n.o.p.q.r.s.t.u.v.r.q.w.x.y.y.y.y.y.",
|
||||
"z.z.z.z.z.A.B.C.D.E.F.F.E.D.C.B.A.A.A.A.A.A.",
|
||||
"G.G.G.G.G.G.G.H.I.J.K.K.J.I.H.G.G.G.G.G.G.G.",
|
||||
"L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L.L."};
|
||||
141
styles/BlueFlux/pixmaps/button_min_unfocus.xpm
Normal file
141
styles/BlueFlux/pixmaps/button_min_unfocus.xpm
Normal file
|
|
@ -0,0 +1,141 @@
|
|||
/* XPM */
|
||||
static char * button_min_unfocus_xpm[] = {
|
||||
"22 22 116 2",
|
||||
" g None",
|
||||
". g #5D5D5D",
|
||||
"+ g #7D7D7D",
|
||||
"@ g #A7A7A7",
|
||||
"# g #818181",
|
||||
"$ g #6D6D6D",
|
||||
"% g #6C6C6C",
|
||||
"& g #717171",
|
||||
"* g #707070",
|
||||
"= g #8D8D8D",
|
||||
"- g #999999",
|
||||
"; g #909090",
|
||||
"> g #747474",
|
||||
", g #6E6E6E",
|
||||
"' g #777777",
|
||||
") g #727272",
|
||||
"! g #808080",
|
||||
"~ g #B7B7B7",
|
||||
"{ g #C0C0C0",
|
||||
"] g #BFBFBF",
|
||||
"^ g #BBBBBB",
|
||||
"/ g #8A8A8A",
|
||||
"( g #D3D3D3",
|
||||
"_ g #7B7B7B",
|
||||
": g #737373",
|
||||
"< g #A3A3A3",
|
||||
"[ g #A5A5A5",
|
||||
"} g #A4A4A4",
|
||||
"| g #626262",
|
||||
"1 g #D0D0D0",
|
||||
"2 g #C4C4C4",
|
||||
"3 g #7F7F7F",
|
||||
"4 g #686868",
|
||||
"5 g #8B8B8B",
|
||||
"6 g #888888",
|
||||
"7 g #878787",
|
||||
"8 g #868686",
|
||||
"9 g #828282",
|
||||
"0 g #C5C5C5",
|
||||
"a g #C6C6C6",
|
||||
"b g #858585",
|
||||
"c g #5C5C5C",
|
||||
"d g #797979",
|
||||
"e g #7E7E7E",
|
||||
"f g #6A6A6A",
|
||||
"g g #5B5B5B",
|
||||
"h g #9F9F9F",
|
||||
"i g #C3C3C3",
|
||||
"j g #C8C8C8",
|
||||
"k g #898989",
|
||||
"l g #545454",
|
||||
"m g #636363",
|
||||
"n g #272727",
|
||||
"o g #2A2A2A",
|
||||
"p g #292929",
|
||||
"q g #262626",
|
||||
"r g #656565",
|
||||
"s g #565656",
|
||||
"t g #BEBEBE",
|
||||
"u g #CACACA",
|
||||
"v g #8E8E8E",
|
||||
"w g #525252",
|
||||
"x g #7C7C7C",
|
||||
"y g #646464",
|
||||
"z g #BABABA",
|
||||
"A g #CBCBCB",
|
||||
"B g #CCCCCC",
|
||||
"C g #929292",
|
||||
"D g #919191",
|
||||
"E g #838383",
|
||||
"F g #4D4D4D",
|
||||
"G g #616161",
|
||||
"H g #282828",
|
||||
"I g #4F4F4F",
|
||||
"J g #CDCDCD",
|
||||
"K g #CECECE",
|
||||
"L g #989898",
|
||||
"M g #979797",
|
||||
"N g #505050",
|
||||
"O g #6F6F6F",
|
||||
"P g #757575",
|
||||
"Q g #606060",
|
||||
"R g #4A4A4A",
|
||||
"S g #CFCFCF",
|
||||
"T g #9C9C9C",
|
||||
"U g #939393",
|
||||
"V g #535353",
|
||||
"W g #696969",
|
||||
"X g #242424",
|
||||
"Y g #595959",
|
||||
"Z g #484848",
|
||||
"` g #8F8F8F",
|
||||
" . g #C7C7C7",
|
||||
".. g #A0A0A0",
|
||||
"+. g #9B9B9B",
|
||||
"@. g #4E4E4E",
|
||||
"#. g #5F5F5F",
|
||||
"$. g #434343",
|
||||
"%. g #ACACAC",
|
||||
"&. g #D5D5D5",
|
||||
"*. g #949494",
|
||||
"=. g #515151",
|
||||
"-. g #3D3D3D",
|
||||
";. g #D6D6D6",
|
||||
">. g #D7D7D7",
|
||||
",. g #B6B6B6",
|
||||
"'. g #444444",
|
||||
"). g #3B3B3B",
|
||||
"!. g #454545",
|
||||
"~. g #C2C2C2",
|
||||
"{. g #D9D9D9",
|
||||
"]. g #DBDBDB",
|
||||
"^. g #DDDDDD",
|
||||
"/. g #E5E5E5",
|
||||
"(. g #E4E4E4",
|
||||
"_. g #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ % % $ $ $ $ $ $ $ $ $ $ ",
|
||||
"& & & & & & & * * = - ; > , * & & $ $ $ $ $ ",
|
||||
"' ' ' ' ' ' ) ! ~ { { ] ^ / % > $ ( ( ( ( ( ",
|
||||
"_ _ _ _ _ ' : < @ @ < < [ } _ | 1 2 2 2 2 2 ",
|
||||
"! ! ! ! 3 4 ! / 5 6 7 8 7 7 9 * ~ 0 a a a a ",
|
||||
"b b b b # c % > d e 3 _ ' & f g h i j j j j ",
|
||||
"k k k k 3 l m n o e e + p q r s ! t u u u u ",
|
||||
"v v v = + w m n p o x o p q y l ) z A B B B ",
|
||||
"C C C D E F G & H H H H H & m I & z J K K K ",
|
||||
"L L L M / N . O > q q q P , Q R _ t S 1 1 1 ",
|
||||
"T T T T U y V W & > X > & f Y Z ` .( ( ( ( ",
|
||||
"........+.# @.#.% & ) & % | $.y %.S &.&.&.&.",
|
||||
"........h *.G =.l r f r l -.l *. .;.>.>.>.>.",
|
||||
"T T T T T = ,.C G '.-.).!.| C ~.;.{.{.{.{.{.",
|
||||
"` ` ` ` ` A >.j %.` e e ` %.j >.].].].].].].",
|
||||
"A A A A A ^.^.].;.S j j S ;.].^.^.^.^.^.^.^.",
|
||||
"/./././././././././.(.(././././././././././.",
|
||||
"_._._._._._._._._._._._._._._._._._._._._._."};
|
||||
205
styles/BlueFlux/pixmaps/button_stick_active.xpm
Normal file
205
styles/BlueFlux/pixmaps/button_stick_active.xpm
Normal file
|
|
@ -0,0 +1,205 @@
|
|||
/* XPM */
|
||||
static char * button_stick_active_xpm[] = {
|
||||
"22 22 180 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #507786",
|
||||
"& c #557C8B",
|
||||
"* c #567A87",
|
||||
"= c #65757B",
|
||||
"- c #8A8E90",
|
||||
"; c #989A9B",
|
||||
"> c #8E9193",
|
||||
", c #6A787D",
|
||||
"' c #557784",
|
||||
") c #547B89",
|
||||
"! c #D1D5D6",
|
||||
"~ c #5A828F",
|
||||
"{ c #5C7B85",
|
||||
"] c #7E8181",
|
||||
"^ c #B7B7B7",
|
||||
"/ c #C0C0C0",
|
||||
"( c #BFBFBF",
|
||||
"_ c #BBBBBB",
|
||||
": c #8A8B8C",
|
||||
"< c #59747C",
|
||||
"[ c #587F8C",
|
||||
"} c #C0C6C7",
|
||||
"| c #517482",
|
||||
"1 c #717475",
|
||||
"2 c #A3A3A3",
|
||||
"3 c #A9A9A9",
|
||||
"4 c #ACACAC",
|
||||
"5 c #AAAAAA",
|
||||
"6 c #A8A8A8",
|
||||
"7 c #A4A4A4",
|
||||
"8 c #7B7C7C",
|
||||
"9 c #56757F",
|
||||
"0 c #5C8491",
|
||||
"a c #5E8693",
|
||||
"b c #C2C8C9",
|
||||
"c c #C1C7C8",
|
||||
"d c #868788",
|
||||
"e c #808080",
|
||||
"f c #8C8C8C",
|
||||
"g c #909090",
|
||||
"h c #919191",
|
||||
"i c #8E8E8E",
|
||||
"j c #8D8D8D",
|
||||
"k c #898989",
|
||||
"l c #828282",
|
||||
"m c #596264",
|
||||
"n c #5C818D",
|
||||
"o c #628A97",
|
||||
"p c #638B98",
|
||||
"q c #C5CACB",
|
||||
"r c #C0C5C6",
|
||||
"s c #616161",
|
||||
"t c #6C6C6C",
|
||||
"u c #767676",
|
||||
"v c #7F7F7F",
|
||||
"w c #878787",
|
||||
"x c #292929",
|
||||
"y c #858585",
|
||||
"z c #7D7D7D",
|
||||
"A c #747474",
|
||||
"B c #6A6A6A",
|
||||
"C c #595A5A",
|
||||
"D c #53737D",
|
||||
"E c #648C98",
|
||||
"F c #67909C",
|
||||
"G c #C7CCCD",
|
||||
"H c #B6BABB",
|
||||
"I c #545454",
|
||||
"J c #636363",
|
||||
"K c #727272",
|
||||
"L c #282828",
|
||||
"M c #7C7C7C",
|
||||
"N c #707070",
|
||||
"O c #656565",
|
||||
"P c #565656",
|
||||
"Q c #4B6269",
|
||||
"R c #668C97",
|
||||
"S c #6C95A0",
|
||||
"T c #C9CECF",
|
||||
"U c #C8CDCE",
|
||||
"V c #AFB4B4",
|
||||
"W c #525252",
|
||||
"X c #737373",
|
||||
"Y c #262626",
|
||||
"Z c #272727",
|
||||
"` c #717171",
|
||||
" . c #646464",
|
||||
".. c #46595F",
|
||||
"+. c #668B96",
|
||||
"@. c #6F98A4",
|
||||
"#. c #7099A5",
|
||||
"$. c #CCD0D1",
|
||||
"%. c #CBCFD0",
|
||||
"&. c #505050",
|
||||
"*. c #242424",
|
||||
"=. c #252525",
|
||||
"-. c #4F4F4F",
|
||||
";. c #41575D",
|
||||
">. c #698E98",
|
||||
",. c #749DA8",
|
||||
"'. c #759EA9",
|
||||
"). c #CED2D3",
|
||||
"!. c #CDD1D2",
|
||||
"~. c #BCBFC0",
|
||||
"{. c #5B5C5C",
|
||||
"]. c #5D5D5D",
|
||||
"^. c #6D6D6D",
|
||||
"/. c #232323",
|
||||
"(. c #606060",
|
||||
"_. c #444747",
|
||||
":. c #486166",
|
||||
"<. c #6F959E",
|
||||
"[. c #79A3AC",
|
||||
"}. c #7AA4AD",
|
||||
"|. c #D1D4D4",
|
||||
"1. c #C5C8C8",
|
||||
"2. c #828484",
|
||||
"3. c #545555",
|
||||
"4. c #676767",
|
||||
"5. c #222222",
|
||||
"6. c #686868",
|
||||
"7. c #595959",
|
||||
"8. c #333E40",
|
||||
"9. c #557278",
|
||||
"0. c #779EA7",
|
||||
"a. c #7EA8B1",
|
||||
"b. c #D3D6D6",
|
||||
"c. c #CED0D0",
|
||||
"d. c #ABADAD",
|
||||
"e. c #5E5F5F",
|
||||
"f. c #363D3E",
|
||||
"g. c #3D5255",
|
||||
"h. c #688C92",
|
||||
"i. c #7DA8B0",
|
||||
"j. c #81ADB5",
|
||||
"k. c #D6D8D8",
|
||||
"l. c #D5D7D7",
|
||||
"m. c #C6C8C8",
|
||||
"n. c #939595",
|
||||
"o. c #505151",
|
||||
"p. c #5C5C5C",
|
||||
"q. c #5F5F5F",
|
||||
"r. c #393A3B",
|
||||
"s. c #2C3D40",
|
||||
"t. c #59777C",
|
||||
"u. c #77A0A8",
|
||||
"v. c #80ACB4",
|
||||
"w. c #D8DADA",
|
||||
"x. c #C1C2C2",
|
||||
"y. c #929393",
|
||||
"z. c #616262",
|
||||
"A. c #444545",
|
||||
"B. c #3C3D3D",
|
||||
"C. c #3A3A3A",
|
||||
"D. c #454646",
|
||||
"E. c #626363",
|
||||
"F. c #868B8D",
|
||||
"G. c #658B91",
|
||||
"H. c #7CA7AE",
|
||||
"I. c #7EA9B1",
|
||||
"J. c #DADCDC",
|
||||
"K. c #C8C9C9",
|
||||
"L. c #8E9090",
|
||||
"M. c #7E7F7F",
|
||||
"N. c #C2CACC",
|
||||
"O. c #719BA2",
|
||||
"P. c #DDDEDE",
|
||||
"Q. c #DBDCDC",
|
||||
"R. c #D6D7D7",
|
||||
"S. c #CFD0D0",
|
||||
"T. c #C6CED0",
|
||||
"U. c #E6E5E5",
|
||||
"V. c #E5E4E4",
|
||||
"W. c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ % % $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ & & & * = - ; > , ' ) & & & & & & ",
|
||||
"! ! ! ! ! $ ~ { ] ^ / / ( _ : < [ ~ ~ ~ ~ ~ ",
|
||||
"} } } } } ! | 1 2 3 4 5 3 6 7 8 9 0 a a a a ",
|
||||
"b b b b b c d e f g h h i j k l m n o p p p ",
|
||||
"q q q q q r s t u v w x y z A B C D E F F F ",
|
||||
"G G G G G H I J K v L L L M N O P Q R S S S ",
|
||||
"T T T T U V W J X Y Z Z Y Y ` .I ..+.@.#.#.",
|
||||
"$.$.$.$.%.H &.s *.=.=.=.=.=.*.J -.;.>.,.'.'.",
|
||||
").).).).!.~.{.].^.N /././.N ^.(._.:.<.[.}.}.",
|
||||
"|.|.|.|.|.1.2.3.4.B 5.5.5.B 6.7.8.9.0.a.a.a.",
|
||||
"b.b.b.b.b.c.d.e.].O O O O O (.f.g.h.i.j.j.j.",
|
||||
"k.k.k.k.k.l.m.n.3.o.p.q.p.-.r.s.t.u.v.j.j.j.",
|
||||
"w.w.w.w.w.w.l.x.y.z.A.B.C.D.E.F.G.H.I.I.I.I.",
|
||||
"J.J.J.J.J.J.J.k.K.d.L.M.M.L.d.K.N.O.O.O.O.O.",
|
||||
"P.P.P.P.P.P.P.P.Q.R.S.K.K.S.R.Q.P.T.T.T.T.T.",
|
||||
"U.U.U.U.U.U.U.U.U.U.U.V.V.U.U.U.U.U.U.U.U.U.",
|
||||
"W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W.W."};
|
||||
190
styles/BlueFlux/pixmaps/button_stick_pressed.xpm
Normal file
190
styles/BlueFlux/pixmaps/button_stick_pressed.xpm
Normal file
|
|
@ -0,0 +1,190 @@
|
|||
/* XPM */
|
||||
static char * button_stick_pressed_xpm[] = {
|
||||
"22 22 165 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #557C8B",
|
||||
"& c #D1D5D6",
|
||||
"* c #5A828F",
|
||||
"= c #5B808C",
|
||||
"- c #68787D",
|
||||
"; c #8A8F90",
|
||||
"> c #999B9C",
|
||||
", c #8F9394",
|
||||
"' c #6D7C80",
|
||||
") c #5B7E89",
|
||||
"! c #59818E",
|
||||
"~ c #C0C6C7",
|
||||
"{ c #517482",
|
||||
"] c #5F7E89",
|
||||
"^ c #7F8283",
|
||||
"/ c #B7B7B7",
|
||||
"( c #C0C0C0",
|
||||
"_ c #BFBFBF",
|
||||
": c #BBBBBB",
|
||||
"< c #8B8C8D",
|
||||
"[ c #5E7A83",
|
||||
"} c #5D8491",
|
||||
"| c #5E8693",
|
||||
"1 c #C2C8C9",
|
||||
"2 c #737373",
|
||||
"3 c #A3A3A3",
|
||||
"4 c #8E8E8E",
|
||||
"5 c #747474",
|
||||
"6 c #6E6E6E",
|
||||
"7 c #8D8D8D",
|
||||
"8 c #A4A4A4",
|
||||
"9 c #7B7D7E",
|
||||
"0 c #5F7F8A",
|
||||
"a c #628A97",
|
||||
"b c #638B98",
|
||||
"c c #C5CACB",
|
||||
"d c #5E5E5E",
|
||||
"e c #808080",
|
||||
"f c #7E7E7E",
|
||||
"g c #727272",
|
||||
"h c #7C7C7C",
|
||||
"i c #828282",
|
||||
"j c #5F6A6D",
|
||||
"k c #638A96",
|
||||
"l c #67909C",
|
||||
"m c #C7CCCD",
|
||||
"n c #C4C9CA",
|
||||
"o c #636464",
|
||||
"p c #6C6C6C",
|
||||
"q c #717171",
|
||||
"r c #767676",
|
||||
"s c #777777",
|
||||
"t c #575757",
|
||||
"u c #787878",
|
||||
"v c #707070",
|
||||
"w c #6A6A6A",
|
||||
"x c #5A5B5C",
|
||||
"y c #628690",
|
||||
"z c #6A939E",
|
||||
"A c #6C95A0",
|
||||
"B c #C9CECF",
|
||||
"C c #BDC2C3",
|
||||
"D c #555555",
|
||||
"E c #636363",
|
||||
"F c #797979",
|
||||
"G c #5C5C5C",
|
||||
"H c #5B5B5B",
|
||||
"I c #7A7A7A",
|
||||
"J c #656565",
|
||||
"K c #565656",
|
||||
"L c #6D95A1",
|
||||
"M c #7099A5",
|
||||
"N c #CCD0D1",
|
||||
"O c #BBBFC0",
|
||||
"P c #525252",
|
||||
"Q c #5D5D5D",
|
||||
"R c #5F5F5F",
|
||||
"S c #5A5A5A",
|
||||
"T c #646464",
|
||||
"U c #545454",
|
||||
"V c #5D787F",
|
||||
"W c #7097A2",
|
||||
"X c #759EA9",
|
||||
"Y c #CED2D3",
|
||||
"Z c #C3C7C8",
|
||||
"` c #535353",
|
||||
" . c #616161",
|
||||
".. c #606060",
|
||||
"+. c #4F5050",
|
||||
"@. c #608087",
|
||||
"#. c #749CA4",
|
||||
"$. c #7AA4AD",
|
||||
"%. c #D1D4D4",
|
||||
"&. c #C8CBCB",
|
||||
"*. c #6A6B6B",
|
||||
"=. c #898989",
|
||||
"-. c #8B8B8B",
|
||||
";. c #666666",
|
||||
">. c #878787",
|
||||
",. c #505759",
|
||||
"'. c #66888F",
|
||||
"). c #79A1AA",
|
||||
"!. c #7EA8B1",
|
||||
"~. c #D3D6D6",
|
||||
"{. c #CED0D0",
|
||||
"]. c #A3A5A5",
|
||||
"^. c #585959",
|
||||
"/. c #676767",
|
||||
"(. c #949595",
|
||||
"_. c #909192",
|
||||
":. c #686868",
|
||||
"<. c #5B5B5C",
|
||||
"[. c #576E73",
|
||||
"}. c #6D939A",
|
||||
"|. c #7DA8B0",
|
||||
"1. c #81ADB5",
|
||||
"2. c #D6D8D8",
|
||||
"3. c #D3D5D5",
|
||||
"4. c #C3C5C5",
|
||||
"5. c #878888",
|
||||
"6. c #626262",
|
||||
"7. c #4B5A5C",
|
||||
"8. c #5D7D83",
|
||||
"9. c #759EA5",
|
||||
"0. c #7FAAB2",
|
||||
"a. c #D8DADA",
|
||||
"b. c #D0D2D2",
|
||||
"c. c #B8BABA",
|
||||
"d. c #8F9090",
|
||||
"e. c #6B6C6C",
|
||||
"f. c #7E7F7F",
|
||||
"g. c #8B9092",
|
||||
"h. c #56767B",
|
||||
"i. c #77A1A7",
|
||||
"j. c #7EA9B1",
|
||||
"k. c #DADCDC",
|
||||
"l. c #D9DBDB",
|
||||
"m. c #B9BBBB",
|
||||
"n. c #A2A3A3",
|
||||
"o. c #939494",
|
||||
"p. c #8A8B8B",
|
||||
"q. c #8D8E8E",
|
||||
"r. c #959696",
|
||||
"s. c #B8C0C2",
|
||||
"t. c #709AA1",
|
||||
"u. c #719BA2",
|
||||
"v. c #DDDEDE",
|
||||
"w. c #DBDCDC",
|
||||
"x. c #D4D5D5",
|
||||
"y. c #C7C8C8",
|
||||
"z. c #B9BABA",
|
||||
"A. c #B1B2B2",
|
||||
"B. c #C6CED0",
|
||||
"C. c #E6E5E5",
|
||||
"D. c #E5E4E4",
|
||||
"E. c #E3E2E2",
|
||||
"F. c #DFDEDE",
|
||||
"G. c #DCDBDB",
|
||||
"H. c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ % % % % % % % % % % % % % % % % % ",
|
||||
"& & & & & $ * * = - ; > , ' ) ! * * * * * * ",
|
||||
"~ ~ ~ ~ ~ & { ] ^ / ( ( _ : < [ } | | | | | ",
|
||||
"1 1 1 1 1 1 & 2 3 4 5 6 5 7 8 9 0 a b b b b ",
|
||||
"c c c c c c d e f g 2 5 2 g h i j k l l l l ",
|
||||
"m m m m m n o p q r s t u r v w x y z A A A ",
|
||||
"B B B B B C D E 2 F G G H I v J K [ L M M M ",
|
||||
"N N N N N O P E 6 Q R R d S p T U V W X X X ",
|
||||
"Y Y Y Y Y Z ` .K H R ..Q S U E +.@.#.$.$.$.",
|
||||
"%.%.%.%.%.&.*.Q =.-.;.;.J >.2 ..,.'.).!.!.!.",
|
||||
"~.~.~.~.~.{.].^./.(._ _ _ _.:.<.[.}.|.1.1.1.",
|
||||
"2.2.2.2.2.3.4.5. .J J J J J 6.7.8.9.0.1.1.1.",
|
||||
"a.a.a.a.a.a.b.c.d.e.R R d /.f.g.h.i.j.j.j.j.",
|
||||
"k.k.k.k.k.k.l.{.m.n.o.p.q.r.n.m.s.t.u.u.u.u.",
|
||||
"v.v.v.v.v.v.v.w.x.y.z.A.A.z.y.x.w.B.B.B.B.B.",
|
||||
"C.C.C.C.C.C.C.C.D.E.F.G.G.F.E.D.C.C.C.C.C.C.",
|
||||
"H.H.H.H.H.H.H.H.H.H.H.H.H.H.H.H.H.H.H.H.H.H."};
|
||||
149
styles/BlueFlux/pixmaps/button_stick_unfocus.xpm
Normal file
149
styles/BlueFlux/pixmaps/button_stick_unfocus.xpm
Normal file
|
|
@ -0,0 +1,149 @@
|
|||
/* XPM */
|
||||
static char * button_stick_unfocus_xpm[] = {
|
||||
"22 22 124 2",
|
||||
" g None",
|
||||
". g #5D5D5D",
|
||||
"+ g #7D7D7D",
|
||||
"@ g #A7A7A7",
|
||||
"# g #818181",
|
||||
"$ g #6D6D6D",
|
||||
"% g #6C6C6C",
|
||||
"& g #717171",
|
||||
"* g #707070",
|
||||
"= g #8D8D8D",
|
||||
"- g #999999",
|
||||
"; g #909090",
|
||||
"> g #747474",
|
||||
", g #6E6E6E",
|
||||
"' g #D3D3D3",
|
||||
") g #777777",
|
||||
"! g #727272",
|
||||
"~ g #808080",
|
||||
"{ g #B7B7B7",
|
||||
"] g #C0C0C0",
|
||||
"^ g #BFBFBF",
|
||||
"/ g #BBBBBB",
|
||||
"( g #8A8A8A",
|
||||
"_ g #C4C4C4",
|
||||
": g #6B6B6B",
|
||||
"< g #737373",
|
||||
"[ g #A3A3A3",
|
||||
"} g #A9A9A9",
|
||||
"| g #ACACAC",
|
||||
"1 g #AAAAAA",
|
||||
"2 g #A8A8A8",
|
||||
"3 g #A4A4A4",
|
||||
"4 g #7B7B7B",
|
||||
"5 g #797979",
|
||||
"6 g #C6C6C6",
|
||||
"7 g #C5C5C5",
|
||||
"8 g #868686",
|
||||
"9 g #8C8C8C",
|
||||
"0 g #919191",
|
||||
"a g #8E8E8E",
|
||||
"b g #898989",
|
||||
"c g #828282",
|
||||
"d g #5F5F5F",
|
||||
"e g #7F7F7F",
|
||||
"f g #C8C8C8",
|
||||
"g g #C3C3C3",
|
||||
"h g #616161",
|
||||
"i g #767676",
|
||||
"j g #878787",
|
||||
"k g #292929",
|
||||
"l g #858585",
|
||||
"m g #6A6A6A",
|
||||
"n g #595959",
|
||||
"o g #CACACA",
|
||||
"p g #B8B8B8",
|
||||
"q g #545454",
|
||||
"r g #636363",
|
||||
"s g #282828",
|
||||
"t g #7C7C7C",
|
||||
"u g #656565",
|
||||
"v g #565656",
|
||||
"w g #5B5B5B",
|
||||
"x g #CCCCCC",
|
||||
"y g #CBCBCB",
|
||||
"z g #B2B2B2",
|
||||
"A g #525252",
|
||||
"B g #262626",
|
||||
"C g #272727",
|
||||
"D g #646464",
|
||||
"E g #535353",
|
||||
"F g #CECECE",
|
||||
"G g #CDCDCD",
|
||||
"H g #505050",
|
||||
"I g #242424",
|
||||
"J g #252525",
|
||||
"K g #4F4F4F",
|
||||
"L g #515151",
|
||||
"M g #848484",
|
||||
"N g #929292",
|
||||
"O g #D0D0D0",
|
||||
"P g #CFCFCF",
|
||||
"Q g #BEBEBE",
|
||||
"R g #232323",
|
||||
"S g #606060",
|
||||
"T g #464646",
|
||||
"U g #5A5A5A",
|
||||
"V g #979797",
|
||||
"W g #989898",
|
||||
"X g #C7C7C7",
|
||||
"Y g #838383",
|
||||
"Z g #676767",
|
||||
"` g #222222",
|
||||
" . g #686868",
|
||||
".. g #3A3A3A",
|
||||
"+. g #696969",
|
||||
"@. g #939393",
|
||||
"#. g #9C9C9C",
|
||||
"$. g #D5D5D5",
|
||||
"%. g #5E5E5E",
|
||||
"&. g #3B3B3B",
|
||||
"*. g #4C4C4C",
|
||||
"=. g #9B9B9B",
|
||||
"-. g #A0A0A0",
|
||||
";. g #D7D7D7",
|
||||
">. g #D6D6D6",
|
||||
",. g #949494",
|
||||
"'. g #5C5C5C",
|
||||
"). g #393939",
|
||||
"!. g #383838",
|
||||
"~. g #9F9F9F",
|
||||
"{. g #D9D9D9",
|
||||
"]. g #C1C1C1",
|
||||
"^. g #444444",
|
||||
"/. g #3C3C3C",
|
||||
"(. g #454545",
|
||||
"_. g #626262",
|
||||
":. g #9A9A9A",
|
||||
"<. g #DBDBDB",
|
||||
"[. g #8F8F8F",
|
||||
"}. g #7E7E7E",
|
||||
"|. g #DDDDDD",
|
||||
"1. g #E5E5E5",
|
||||
"2. g #E4E4E4",
|
||||
"3. g #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ % % $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ & & & * * = - ; > , * & & & & & & ",
|
||||
"' ' ' ' ' $ ) ! ~ { ] ] ^ / ( % > ) ) ) ) ) ",
|
||||
"_ _ _ _ _ ' : < [ } | 1 } 2 3 4 % 5 4 4 4 4 ",
|
||||
"6 6 6 6 6 7 8 ~ 9 ; 0 0 a = b c d ) e ~ ~ ~ ",
|
||||
"f f f f f g h % i e j k l + > m n m # l l l ",
|
||||
"o o o o o p q r ! e s s s t * u v w # b b b ",
|
||||
"x x x x y z A r < B C C B B & D q E # = a a ",
|
||||
"F F F F G p H h I J J J J J I r K L M 0 N N ",
|
||||
"O O O O P Q w . $ * R R R * $ S T U ( V W W ",
|
||||
"' ' ' ' ' X Y q Z m ` ` ` m .n ..+.@.#.#.#.",
|
||||
"$.$.$.$.$.P | %.. u u u u u S &.*.# =.-.-.-.",
|
||||
";.;.;.;.;.>.X ,.q H '.d '.K ).!., ,.~.-.-.-.",
|
||||
"{.{.{.{.{.{.>.].N h ^./...(._.b ~ :.#.#.#.#.",
|
||||
"<.<.<.<.<.<.<.;.f | [.}.}.[.| f X [.[.[.[.[.",
|
||||
"|.|.|.|.|.|.|.|.<.>.P f f P >.<.|.y y y y y ",
|
||||
"1.1.1.1.1.1.1.1.1.1.1.2.2.1.1.1.1.1.1.1.1.1.",
|
||||
"3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3.3."};
|
||||
217
styles/BlueFlux/pixmaps/button_stuck.xpm
Normal file
217
styles/BlueFlux/pixmaps/button_stuck.xpm
Normal file
|
|
@ -0,0 +1,217 @@
|
|||
/* XPM */
|
||||
static char * button_stuck_xpm[] = {
|
||||
"22 22 192 2",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #557C8B",
|
||||
"& c #D1D5D6",
|
||||
"* c #5A828F",
|
||||
"= c #59808D",
|
||||
"- c #5D7D86",
|
||||
"; c #7D959A",
|
||||
"> c #8DA0A4",
|
||||
", c #82989D",
|
||||
"' c #628188",
|
||||
") c #587F8B",
|
||||
"! c #59818E",
|
||||
"~ c #C0C6C7",
|
||||
"{ c #517482",
|
||||
"] c #5C7A84",
|
||||
"^ c #6F888D",
|
||||
"/ c #ADBCBE",
|
||||
"( c #B6C4C6",
|
||||
"_ c #B6C4C7",
|
||||
": c #B6C3C6",
|
||||
"< c #B2BFC2",
|
||||
"[ c #7D9296",
|
||||
"} c #597C87",
|
||||
"| c #5D8491",
|
||||
"1 c #5E8693",
|
||||
"2 c #C2C8C9",
|
||||
"3 c #C5CBCC",
|
||||
"4 c #62797E",
|
||||
"5 c #96A8AC",
|
||||
"6 c #7F9398",
|
||||
"7 c #58757D",
|
||||
"8 c #51747D",
|
||||
"9 c #7D9297",
|
||||
"0 c #97A9AD",
|
||||
"a c #6D8488",
|
||||
"b c #5C818C",
|
||||
"c c #628A97",
|
||||
"d c #638B98",
|
||||
"e c #C5CACB",
|
||||
"f c #7A8C90",
|
||||
"g c #70878C",
|
||||
"h c #6E868A",
|
||||
"i c #567A82",
|
||||
"j c #567A83",
|
||||
"k c #688890",
|
||||
"l c #72898E",
|
||||
"m c #537076",
|
||||
"n c #638A96",
|
||||
"o c #67909C",
|
||||
"p c #C7CCCD",
|
||||
"q c #C4C9CA",
|
||||
"r c #536B70",
|
||||
"s c #587479",
|
||||
"t c #5C7980",
|
||||
"u c #5A7F88",
|
||||
"v c #1D3C42",
|
||||
"w c #5B8088",
|
||||
"x c #5A7F87",
|
||||
"y c #5B8087",
|
||||
"z c #567379",
|
||||
"A c #496369",
|
||||
"B c #618690",
|
||||
"C c #6A939E",
|
||||
"D c #6C95A0",
|
||||
"E c #C9CECF",
|
||||
"F c #BCC2C4",
|
||||
"G c #435C62",
|
||||
"H c #4E6C73",
|
||||
"I c #597C84",
|
||||
"J c #5E838C",
|
||||
"K c #5E828B",
|
||||
"L c #587A83",
|
||||
"M c #4F6E74",
|
||||
"N c #445E64",
|
||||
"O c #5A7C85",
|
||||
"P c #6D95A1",
|
||||
"Q c #7099A5",
|
||||
"R c #CCD0D1",
|
||||
"S c #BAC0C1",
|
||||
"T c #40595F",
|
||||
"U c #4D6C73",
|
||||
"V c #597A82",
|
||||
"W c #60868D",
|
||||
"X c #5E828A",
|
||||
"Y c #577A81",
|
||||
"Z c #4E6D74",
|
||||
"` c #425B61",
|
||||
" . c #597982",
|
||||
".. c #7097A2",
|
||||
"+. c #759EA9",
|
||||
"@. c #CED2D3",
|
||||
"#. c #C3C7C8",
|
||||
"$. c #445A61",
|
||||
"%. c #4B6A72",
|
||||
"&. c #5A747A",
|
||||
"*. c #61838B",
|
||||
"=. c #648890",
|
||||
"-. c #62858E",
|
||||
";. c #5F8188",
|
||||
">. c #587378",
|
||||
",. c #3D575C",
|
||||
"'. c #749CA4",
|
||||
"). c #7AA4AD",
|
||||
"!. c #D1D4D4",
|
||||
"~. c #C8CBCB",
|
||||
"{. c #5E7074",
|
||||
"]. c #48666D",
|
||||
"^. c #688187",
|
||||
"/. c #779398",
|
||||
"(. c #739197",
|
||||
"_. c #719096",
|
||||
":. c #6F8F95",
|
||||
"<. c #739096",
|
||||
"[. c #637C82",
|
||||
"}. c #4A6971",
|
||||
"|. c #425D64",
|
||||
"1. c #66888F",
|
||||
"2. c #79A1AA",
|
||||
"3. c #7EA8B1",
|
||||
"4. c #D3D6D6",
|
||||
"5. c #CED0D0",
|
||||
"6. c #A0A7A7",
|
||||
"7. c #456067",
|
||||
"8. c #4F717A",
|
||||
"9. c #778D93",
|
||||
"0. c #9BADB1",
|
||||
"a. c #93AAAF",
|
||||
"b. c #98AAAE",
|
||||
"c. c #748B92",
|
||||
"d. c #4F727B",
|
||||
"e. c #45636A",
|
||||
"f. c #6D939A",
|
||||
"g. c #7DA8B0",
|
||||
"h. c #81ADB5",
|
||||
"i. c #D6D8D8",
|
||||
"j. c #D3D5D5",
|
||||
"k. c #C3C5C5",
|
||||
"l. c #818B8E",
|
||||
"m. c #4A6B72",
|
||||
"n. c #4C6F78",
|
||||
"o. c #496972",
|
||||
"p. c #384A4E",
|
||||
"q. c #618288",
|
||||
"r. c #759EA5",
|
||||
"s. c #7FAAB2",
|
||||
"t. c #D8DADA",
|
||||
"u. c #D0D2D2",
|
||||
"v. c #B8BABA",
|
||||
"w. c #8B9293",
|
||||
"x. c #5B7278",
|
||||
"y. c #486871",
|
||||
"z. c #476871",
|
||||
"A. c #476770",
|
||||
"B. c #567076",
|
||||
"C. c #7C8385",
|
||||
"D. c #84898B",
|
||||
"E. c #496469",
|
||||
"F. c #79A3AA",
|
||||
"G. c #7EA9B1",
|
||||
"H. c #DADCDC",
|
||||
"I. c #D9DBDB",
|
||||
"J. c #B9BBBB",
|
||||
"K. c #A2A3A3",
|
||||
"L. c #939595",
|
||||
"M. c #888C8D",
|
||||
"N. c #8C8E8F",
|
||||
"O. c #959696",
|
||||
"P. c #9D9F9F",
|
||||
"Q. c #AFB6B8",
|
||||
"R. c #6F99A0",
|
||||
"S. c #719BA2",
|
||||
"T. c #DDDEDE",
|
||||
"U. c #DBDCDC",
|
||||
"V. c #D4D5D5",
|
||||
"W. c #C7C8C8",
|
||||
"X. c #B9BABA",
|
||||
"Y. c #B1B2B2",
|
||||
"Z. c #CBCCCC",
|
||||
"`. c #D9DADA",
|
||||
" + c #C6CED0",
|
||||
".+ c #E6E5E5",
|
||||
"++ c #E5E4E4",
|
||||
"@+ c #E3E2E2",
|
||||
"#+ c #DFDEDE",
|
||||
"$+ c #DCDBDB",
|
||||
"%+ c #E4E3E3",
|
||||
"&+ c #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ % % % % % % % % % % % % % % % % % ",
|
||||
"& & & & & $ * * = - ; > , ' ) ! * * * * * * ",
|
||||
"~ ~ ~ ~ ~ & { ] ^ / ( _ : < [ } | 1 1 1 1 1 ",
|
||||
"2 2 2 2 2 2 3 4 5 6 7 8 7 9 0 a b c d d d d ",
|
||||
"e e e e e e f g h i i j j j k l m n o o o o ",
|
||||
"p p p p p q r s t u u v w x y z A B C D D D ",
|
||||
"E E E E E F G H I J v v v K L M N O P Q Q Q ",
|
||||
"R R R R R S T U V W v v v X Y Z ` ...+.+.+.",
|
||||
"@.@.@.@.@.#.$.%.&.*.=.v -.;.>.U ,.;.'.).).).",
|
||||
"!.!.!.!.!.~.{.].^./.(._.:.<.[.}.|.1.2.3.3.3.",
|
||||
"4.4.4.4.4.5.6.7.8.9.0.a.b.c.d.e.m f.g.h.h.h.",
|
||||
"i.i.i.i.i.j.k.l.m.n.n.n.n.n.o.p.q.r.s.h.h.h.",
|
||||
"t.t.t.t.t.t.u.v.w.x.y.z.A.B.C.D.E.F.G.G.G.G.",
|
||||
"H.H.H.H.H.H.I.5.J.K.L.M.N.O.K.P.Q.R.S.S.S.S.",
|
||||
"T.T.T.T.T.T.T.U.V.W.X.Y.Y.X.W.Z.`. + + + + +",
|
||||
".+.+.+.+.+.+.+.+++@+#+$+$+#+@+%+.+.+.+.+.+.+",
|
||||
"&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+&+"};
|
||||
136
styles/BlueFlux/pixmaps/button_stuck_unfocus.xpm
Normal file
136
styles/BlueFlux/pixmaps/button_stuck_unfocus.xpm
Normal file
|
|
@ -0,0 +1,136 @@
|
|||
/* XPM */
|
||||
static char * button_stuck_unfocus_xpm[] = {
|
||||
"22 22 111 2",
|
||||
" g None",
|
||||
". g #5D5D5D",
|
||||
"+ g #7D7D7D",
|
||||
"@ g #A7A7A7",
|
||||
"# g #818181",
|
||||
"$ g #6D6D6D",
|
||||
"% g #717171",
|
||||
"& g #D3D3D3",
|
||||
"* g #777777",
|
||||
"= g #757575",
|
||||
"- g #747474",
|
||||
"; g #8E8E8E",
|
||||
"> g #9A9A9A",
|
||||
", g #919191",
|
||||
"' g #787878",
|
||||
") g #767676",
|
||||
"! g #C4C4C4",
|
||||
"~ g #6B6B6B",
|
||||
"{ g #727272",
|
||||
"] g #B7B7B7",
|
||||
"^ g #C0C0C0",
|
||||
"/ g #BFBFBF",
|
||||
"( g #BBBBBB",
|
||||
"_ g #8C8C8C",
|
||||
": g #797979",
|
||||
"< g #7B7B7B",
|
||||
"[ g #C6C6C6",
|
||||
"} g #C9C9C9",
|
||||
"| g #A3A3A3",
|
||||
"1 g #8D8D8D",
|
||||
"2 g #6A6A6A",
|
||||
"3 g #A4A4A4",
|
||||
"4 g #7F7F7F",
|
||||
"5 g #808080",
|
||||
"6 g #C8C8C8",
|
||||
"7 g #878787",
|
||||
"8 g #707070",
|
||||
"9 g #828282",
|
||||
"0 g #676767",
|
||||
"a g #858585",
|
||||
"b g #CACACA",
|
||||
"c g #C7C7C7",
|
||||
"d g #646464",
|
||||
"e g #6C6C6C",
|
||||
"f g #333333",
|
||||
"g g #5B5B5B",
|
||||
"h g #7C7C7C",
|
||||
"i g #898989",
|
||||
"j g #CCCCCC",
|
||||
"k g #555555",
|
||||
"l g #636363",
|
||||
"m g #656565",
|
||||
"n g #565656",
|
||||
"o g #8A8A8A",
|
||||
"p g #CECECE",
|
||||
"q g #BEBEBE",
|
||||
"r g #525252",
|
||||
"s g #545454",
|
||||
"t g #929292",
|
||||
"u g #D0D0D0",
|
||||
"v g #C5C5C5",
|
||||
"w g #616161",
|
||||
"x g #7E7E7E",
|
||||
"y g #4F4F4F",
|
||||
"z g #909090",
|
||||
"A g #989898",
|
||||
"B g #7A7A7A",
|
||||
"C g #8B8B8B",
|
||||
"D g #888888",
|
||||
"E g #868686",
|
||||
"F g #606060",
|
||||
"G g #959595",
|
||||
"H g #9C9C9C",
|
||||
"I g #D5D5D5",
|
||||
"J g #CFCFCF",
|
||||
"K g #585858",
|
||||
"L g #A8A8A8",
|
||||
"M g #A5A5A5",
|
||||
"N g #848484",
|
||||
"O g #686868",
|
||||
"P g #5A5A5A",
|
||||
"Q g #9B9B9B",
|
||||
"R g #A0A0A0",
|
||||
"S g #D7D7D7",
|
||||
"T g #D4D4D4",
|
||||
"U g #454545",
|
||||
"V g #9D9D9D",
|
||||
"W g #D9D9D9",
|
||||
"X g #D1D1D1",
|
||||
"Y g #B9B9B9",
|
||||
"Z g #5F5F5F",
|
||||
"` g #5E5E5E",
|
||||
" . g #5C5C5C",
|
||||
".. g #979797",
|
||||
"+. g #DBDBDB",
|
||||
"@. g #DADADA",
|
||||
"#. g #BABABA",
|
||||
"$. g #A2A2A2",
|
||||
"%. g #949494",
|
||||
"&. g #9E9E9E",
|
||||
"*. g #B4B4B4",
|
||||
"=. g #8F8F8F",
|
||||
"-. g #DDDDDD",
|
||||
";. g #B1B1B1",
|
||||
">. g #CBCBCB",
|
||||
",. g #E5E5E5",
|
||||
"'. g #E4E4E4",
|
||||
"). g #E2E2E2",
|
||||
"!. g #DEDEDE",
|
||||
"~. g #E3E3E3",
|
||||
"{. g #F6F6F6",
|
||||
". . . . . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + + + + + + + + + + + + + + + + + ",
|
||||
"@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ ",
|
||||
"# # # # # # # # # # # # # # # # # # # # # # ",
|
||||
"$ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ $ ",
|
||||
"$ $ $ $ $ % % % % % % % % % % % % % % % % % ",
|
||||
"& & & & & $ * * = - ; > , ' - ) * * * * * * ",
|
||||
"! ! ! ! ! & ~ { # ] ^ ^ / ( _ { : < < < < < ",
|
||||
"[ [ [ [ [ [ } { | 1 $ 2 $ _ 3 + * 4 5 5 5 5 ",
|
||||
"6 6 6 6 6 6 7 5 4 8 8 8 8 8 4 9 0 4 a a a a ",
|
||||
"b b b b b c d e % - - f = - = 2 g h 7 i i i ",
|
||||
"j j j j j ^ k l { ' f f f ' 8 m n { o ; ; ; ",
|
||||
"p p p p p q r l 8 < f f f ' 8 d s 8 _ t t t ",
|
||||
"u u u u u v s w e : x f < * ~ l y * z A A A ",
|
||||
"& & & & & b ~ . B C D 7 E 7 = F k x G H H H ",
|
||||
"I I I I I J 3 K 0 7 L | M N O P 0 D Q R R R ",
|
||||
"S S S S S T ! D w m m m m m F U ' t V R R R ",
|
||||
"W W W W W W X Y z ~ Z Z ` O # 7 ...H H H H ",
|
||||
"+.+.+.+.+.+.@.J #.$.%.o 1 G $.&.*.1 =.=.=.=.",
|
||||
"-.-.-.-.-.-.-.+.T c Y ;.;.Y c >.W >.>.>.>.>.",
|
||||
",.,.,.,.,.,.,.,.'.).!.+.+.!.).~.,.,.,.,.,.,.",
|
||||
"{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{.{."};
|
||||
46
styles/BlueFlux/pixmaps/button_toolbar.xpm
Normal file
46
styles/BlueFlux/pixmaps/button_toolbar.xpm
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/* XPM */
|
||||
static char * button_toolbar_xpm[] = {
|
||||
"28 22 21 1",
|
||||
" c None",
|
||||
". c #7A949B",
|
||||
"+ c #93AAB2",
|
||||
"@ c #678895",
|
||||
"# c #527887",
|
||||
"$ c #507887",
|
||||
"% c #547A8A",
|
||||
"& c #587F8D",
|
||||
"* c #5C8491",
|
||||
"= c #5F8794",
|
||||
"- c #648C99",
|
||||
"; c #67909C",
|
||||
"> c #6B949F",
|
||||
", c #6F98A4",
|
||||
"' c #739CA7",
|
||||
") c #77A1AB",
|
||||
"! c #7BA5AE",
|
||||
"~ c #7FA9B2",
|
||||
"{ c #81ADB5",
|
||||
"] c #7FABB3",
|
||||
"^ c #759FA7",
|
||||
"............................",
|
||||
"++++++++++++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"############################",
|
||||
"############################",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"****************************",
|
||||
"============================",
|
||||
"----------------------------",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
"''''''''''''''''''''''''''''",
|
||||
"))))))))))))))))))))))))))))",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^"};
|
||||
60
styles/BlueFlux/pixmaps/button_toolbar_pressed.xpm
Normal file
60
styles/BlueFlux/pixmaps/button_toolbar_pressed.xpm
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
/* XPM */
|
||||
static char * button_toolbar_pressed_xpm[] = {
|
||||
"28 22 35 1",
|
||||
" c None",
|
||||
". c #3F5C68",
|
||||
"+ c #4A6D7A",
|
||||
"@ c #3E5C68",
|
||||
"# c #486D7A",
|
||||
"$ c #405E6A",
|
||||
"% c #4C6F7D",
|
||||
"& c #44626D",
|
||||
"* c #507380",
|
||||
"= c #47656F",
|
||||
"- c #537883",
|
||||
"; c #496872",
|
||||
"> c #567A86",
|
||||
", c #4D6C76",
|
||||
"' c #5B7F8B",
|
||||
") c #506F78",
|
||||
"! c #5D828D",
|
||||
"~ c #52727A",
|
||||
"{ c #618690",
|
||||
"] c #55757F",
|
||||
"^ c #658A95",
|
||||
"/ c #597881",
|
||||
"( c #688D97",
|
||||
"_ c #5B7C84",
|
||||
": c #6C929B",
|
||||
"< c #5F7F86",
|
||||
"[ c #6F959E",
|
||||
"} c #628289",
|
||||
"| c #7399A1",
|
||||
"1 c #64858C",
|
||||
"2 c #759DA4",
|
||||
"3 c #62848A",
|
||||
"4 c #739BA2",
|
||||
"5 c #5B7A81",
|
||||
"6 c #6A9097",
|
||||
"............................",
|
||||
".+++++++++++++++++++++++++++",
|
||||
"@###########################",
|
||||
".+++++++++++++++++++++++++++",
|
||||
".+++++++++++++++++++++++++++",
|
||||
"@###########################",
|
||||
"$%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"&***************************",
|
||||
"=---------------------------",
|
||||
";>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
",'''''''''''''''''''''''''''",
|
||||
")!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"~{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"]^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"/(((((((((((((((((((((((((((",
|
||||
"_:::::::::::::::::::::::::::",
|
||||
"<[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"}|||||||||||||||||||||||||||",
|
||||
"1222222222222222222222222222",
|
||||
"1222222222222222222222222222",
|
||||
"3444444444444444444444444444",
|
||||
"5666666666666666666666666666"};
|
||||
527
styles/BlueFlux/pixmaps/menu_frame.xpm
Normal file
527
styles/BlueFlux/pixmaps/menu_frame.xpm
Normal file
|
|
@ -0,0 +1,527 @@
|
|||
/* XPM */
|
||||
static char * menu_frame_xpm[] = {
|
||||
"98 459 65 1",
|
||||
" c None",
|
||||
". c #C0C0C0",
|
||||
"+ c #C1C1C1",
|
||||
"@ c #C2C2C2",
|
||||
"# c #C3C3C3",
|
||||
"$ c #C4C4C4",
|
||||
"% c #C5C5C5",
|
||||
"& c #C6C6C6",
|
||||
"* c #C7C7C7",
|
||||
"= c #C8C8C8",
|
||||
"- c #C9C9C9",
|
||||
"; c #CACACA",
|
||||
"> c #CBCBCB",
|
||||
", c #CCCCCC",
|
||||
"' c #CDCDCD",
|
||||
") c #CECECE",
|
||||
"! c #CFCFCF",
|
||||
"~ c #D0D0D0",
|
||||
"{ c #D1D1D1",
|
||||
"] c #D2D2D2",
|
||||
"^ c #D3D3D3",
|
||||
"/ c #D4D4D4",
|
||||
"( c #D5D5D5",
|
||||
"_ c #D6D6D6",
|
||||
": c #D7D7D7",
|
||||
"< c #D8D8D8",
|
||||
"[ c #D9D9D9",
|
||||
"} c #DADADA",
|
||||
"| c #DBDBDB",
|
||||
"1 c #DCDCDC",
|
||||
"2 c #DDDDDD",
|
||||
"3 c #DEDEDE",
|
||||
"4 c #DFDFDF",
|
||||
"5 c #E0E0E0",
|
||||
"6 c #E1E1E1",
|
||||
"7 c #E2E2E2",
|
||||
"8 c #E3E3E3",
|
||||
"9 c #E4E4E4",
|
||||
"0 c #E5E5E5",
|
||||
"a c #E6E6E6",
|
||||
"b c #E7E7E7",
|
||||
"c c #E8E8E8",
|
||||
"d c #E9E9E9",
|
||||
"e c #EAEAEA",
|
||||
"f c #EBEBEB",
|
||||
"g c #ECECEC",
|
||||
"h c #EDEDED",
|
||||
"i c #EEEEEE",
|
||||
"j c #EFEFEF",
|
||||
"k c #F0F0F0",
|
||||
"l c #F1F1F1",
|
||||
"m c #F2F2F2",
|
||||
"n c #F3F3F3",
|
||||
"o c #F4F4F4",
|
||||
"p c #F5F5F5",
|
||||
"q c #F6F6F6",
|
||||
"r c #F7F7F7",
|
||||
"s c #F8F8F8",
|
||||
"t c #F9F9F9",
|
||||
"u c #FAFAFA",
|
||||
"v c #FBFBFB",
|
||||
"w c #FCFCFC",
|
||||
"x c #FDFDFD",
|
||||
"y c #FEFEFE",
|
||||
"z c #FFFFFF",
|
||||
"..................................................................................................",
|
||||
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"##################################################################################################",
|
||||
"##################################################################################################",
|
||||
"##################################################################################################",
|
||||
"##################################################################################################",
|
||||
"##################################################################################################",
|
||||
"##################################################################################################",
|
||||
"##################################################################################################",
|
||||
"##################################################################################################",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"**************************************************************************************************",
|
||||
"**************************************************************************************************",
|
||||
"**************************************************************************************************",
|
||||
"**************************************************************************************************",
|
||||
"**************************************************************************************************",
|
||||
"**************************************************************************************************",
|
||||
"**************************************************************************************************",
|
||||
"==================================================================================================",
|
||||
"==================================================================================================",
|
||||
"==================================================================================================",
|
||||
"==================================================================================================",
|
||||
"==================================================================================================",
|
||||
"==================================================================================================",
|
||||
"==================================================================================================",
|
||||
"--------------------------------------------------------------------------------------------------",
|
||||
"--------------------------------------------------------------------------------------------------",
|
||||
"--------------------------------------------------------------------------------------------------",
|
||||
"--------------------------------------------------------------------------------------------------",
|
||||
"--------------------------------------------------------------------------------------------------",
|
||||
"--------------------------------------------------------------------------------------------------",
|
||||
"--------------------------------------------------------------------------------------------------",
|
||||
"--------------------------------------------------------------------------------------------------",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
"''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"//////////////////////////////////////////////////////////////////////////////////////////////////",
|
||||
"//////////////////////////////////////////////////////////////////////////////////////////////////",
|
||||
"//////////////////////////////////////////////////////////////////////////////////////////////////",
|
||||
"//////////////////////////////////////////////////////////////////////////////////////////////////",
|
||||
"//////////////////////////////////////////////////////////////////////////////////////////////////",
|
||||
"//////////////////////////////////////////////////////////////////////////////////////////////////",
|
||||
"//////////////////////////////////////////////////////////////////////////////////////////////////",
|
||||
"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
|
||||
"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
|
||||
"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
|
||||
"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
|
||||
"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
|
||||
"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
|
||||
"((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((",
|
||||
"__________________________________________________________________________________________________",
|
||||
"__________________________________________________________________________________________________",
|
||||
"__________________________________________________________________________________________________",
|
||||
"__________________________________________________________________________________________________",
|
||||
"__________________________________________________________________________________________________",
|
||||
"__________________________________________________________________________________________________",
|
||||
"__________________________________________________________________________________________________",
|
||||
"__________________________________________________________________________________________________",
|
||||
"::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
|
||||
"::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
|
||||
"::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
|
||||
"::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
|
||||
"::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
|
||||
"::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
|
||||
"::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::",
|
||||
"<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
|
||||
"<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
|
||||
"<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
|
||||
"<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
|
||||
"<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
|
||||
"<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
|
||||
"<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<",
|
||||
"[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[[",
|
||||
"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}",
|
||||
"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}",
|
||||
"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}",
|
||||
"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}",
|
||||
"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}",
|
||||
"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}",
|
||||
"}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}",
|
||||
"||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||",
|
||||
"||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||",
|
||||
"||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||",
|
||||
"||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||",
|
||||
"||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||",
|
||||
"||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||",
|
||||
"||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||",
|
||||
"||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||",
|
||||
"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
|
||||
"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
|
||||
"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
|
||||
"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
|
||||
"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
|
||||
"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
|
||||
"11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111",
|
||||
"22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222",
|
||||
"22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222",
|
||||
"22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222",
|
||||
"22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222",
|
||||
"22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222",
|
||||
"22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222",
|
||||
"22222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222",
|
||||
"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333",
|
||||
"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333",
|
||||
"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333",
|
||||
"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333",
|
||||
"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333",
|
||||
"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333",
|
||||
"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333",
|
||||
"33333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333",
|
||||
"44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444",
|
||||
"44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444",
|
||||
"44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444",
|
||||
"44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444",
|
||||
"44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444",
|
||||
"44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444",
|
||||
"44444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444",
|
||||
"55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555",
|
||||
"55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555",
|
||||
"55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555",
|
||||
"55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555",
|
||||
"55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555",
|
||||
"55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555",
|
||||
"55555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555",
|
||||
"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666",
|
||||
"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666",
|
||||
"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666",
|
||||
"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666",
|
||||
"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666",
|
||||
"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666",
|
||||
"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666",
|
||||
"66666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666",
|
||||
"77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777",
|
||||
"77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777",
|
||||
"77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777",
|
||||
"77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777",
|
||||
"77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777",
|
||||
"77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777",
|
||||
"77777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777",
|
||||
"88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888",
|
||||
"88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888",
|
||||
"88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888",
|
||||
"88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888",
|
||||
"88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888",
|
||||
"88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888",
|
||||
"88888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888",
|
||||
"99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
||||
"99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
||||
"99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
||||
"99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
||||
"99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
||||
"99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
||||
"99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
||||
"99999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999",
|
||||
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
"00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
|
||||
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
||||
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
||||
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
||||
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
||||
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
||||
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
||||
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
||||
"aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
|
||||
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
|
||||
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
|
||||
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
|
||||
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
|
||||
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
|
||||
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
|
||||
"bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb",
|
||||
"cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
|
||||
"cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
|
||||
"cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
|
||||
"cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
|
||||
"cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
|
||||
"cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
|
||||
"cccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc",
|
||||
"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
|
||||
"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
|
||||
"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
|
||||
"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
|
||||
"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
|
||||
"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
|
||||
"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
|
||||
"dddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddddd",
|
||||
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
|
||||
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
|
||||
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
|
||||
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
|
||||
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
|
||||
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
|
||||
"eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
|
||||
"gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg",
|
||||
"gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg",
|
||||
"gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg",
|
||||
"gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg",
|
||||
"gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg",
|
||||
"gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg",
|
||||
"gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg",
|
||||
"gggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg",
|
||||
"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
|
||||
"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
|
||||
"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
|
||||
"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
|
||||
"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
|
||||
"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
|
||||
"hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh",
|
||||
"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
|
||||
"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
|
||||
"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
|
||||
"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
|
||||
"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
|
||||
"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
|
||||
"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
|
||||
"iiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiiii",
|
||||
"jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj",
|
||||
"jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj",
|
||||
"jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj",
|
||||
"jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj",
|
||||
"jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj",
|
||||
"jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj",
|
||||
"jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj",
|
||||
"kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk",
|
||||
"kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk",
|
||||
"kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk",
|
||||
"kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk",
|
||||
"kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk",
|
||||
"kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk",
|
||||
"kkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk",
|
||||
"llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
|
||||
"llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
|
||||
"llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
|
||||
"llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
|
||||
"llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
|
||||
"llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
|
||||
"llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
|
||||
"llllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllll",
|
||||
"mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
|
||||
"mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
|
||||
"mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
|
||||
"mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
|
||||
"mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
|
||||
"mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
|
||||
"mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm",
|
||||
"nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn",
|
||||
"nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn",
|
||||
"nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn",
|
||||
"nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn",
|
||||
"nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn",
|
||||
"nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn",
|
||||
"nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn",
|
||||
"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
||||
"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
||||
"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
||||
"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
||||
"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
||||
"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
||||
"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
||||
"oooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo",
|
||||
"pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp",
|
||||
"pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp",
|
||||
"pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp",
|
||||
"pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp",
|
||||
"pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp",
|
||||
"pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp",
|
||||
"pppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppppp",
|
||||
"qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq",
|
||||
"qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq",
|
||||
"qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq",
|
||||
"qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq",
|
||||
"qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq",
|
||||
"qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq",
|
||||
"qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq",
|
||||
"qqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqq",
|
||||
"rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr",
|
||||
"rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr",
|
||||
"rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr",
|
||||
"rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr",
|
||||
"rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr",
|
||||
"rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr",
|
||||
"rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr",
|
||||
"ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
|
||||
"ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
|
||||
"ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
|
||||
"ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
|
||||
"ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
|
||||
"ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
|
||||
"ssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss",
|
||||
"tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
|
||||
"tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
|
||||
"tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
|
||||
"tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
|
||||
"tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
|
||||
"tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
|
||||
"tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
|
||||
"tttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt",
|
||||
"uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu",
|
||||
"uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu",
|
||||
"uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu",
|
||||
"uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu",
|
||||
"uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu",
|
||||
"uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu",
|
||||
"uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu",
|
||||
"vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv",
|
||||
"vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv",
|
||||
"vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv",
|
||||
"vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv",
|
||||
"vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv",
|
||||
"vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv",
|
||||
"vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv",
|
||||
"wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww",
|
||||
"wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww",
|
||||
"wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww",
|
||||
"wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww",
|
||||
"wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww",
|
||||
"wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww",
|
||||
"wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww",
|
||||
"wwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwwww",
|
||||
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
||||
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
||||
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
||||
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
||||
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
||||
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
||||
"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
||||
"yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
|
||||
"yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
|
||||
"yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
|
||||
"yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
|
||||
"yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
|
||||
"yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
|
||||
"yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
|
||||
"zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz",
|
||||
"zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz"};
|
||||
47
styles/BlueFlux/pixmaps/title_bar.xpm
Normal file
47
styles/BlueFlux/pixmaps/title_bar.xpm
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/* XPM */
|
||||
static char * title_bar_xpm[] = {
|
||||
"95 22 22 1",
|
||||
" c None",
|
||||
". c #45666F",
|
||||
"+ c #68858D",
|
||||
"@ c #97ADB4",
|
||||
"# c #6A8A97",
|
||||
"$ c #517887",
|
||||
"% c #557C8B",
|
||||
"& c #5A828F",
|
||||
"* c #5E8693",
|
||||
"= c #638B98",
|
||||
"- c #67909C",
|
||||
"; c #6C95A0",
|
||||
"> c #7099A5",
|
||||
", c #759EA9",
|
||||
"' c #7AA4AD",
|
||||
") c #7EA8B1",
|
||||
"! c #81ADB5",
|
||||
"~ c #7EA9B1",
|
||||
"{ c #719BA2",
|
||||
"] c #C6CED0",
|
||||
"^ c #E6E5E5",
|
||||
"/ c #F6F6F6",
|
||||
"...............................................................................................",
|
||||
"+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"###############################################################################################",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"***********************************************************************************************",
|
||||
"===============================================================================================",
|
||||
"-----------------------------------------------------------------------------------------------",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
")))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"///////////////////////////////////////////////////////////////////////////////////////////////"};
|
||||
46
styles/BlueFlux/pixmaps/title_bar_unfocus.xpm
Normal file
46
styles/BlueFlux/pixmaps/title_bar_unfocus.xpm
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/* XPM */
|
||||
static char * title_bar_unfocus_xpm[] = {
|
||||
"95 22 21 1",
|
||||
" g None",
|
||||
". g #5D5D5D",
|
||||
"+ g #7D7D7D",
|
||||
"@ g #A7A7A7",
|
||||
"# g #818181",
|
||||
"$ g #6D6D6D",
|
||||
"% g #717171",
|
||||
"& g #777777",
|
||||
"* g #7B7B7B",
|
||||
"= g #808080",
|
||||
"- g #858585",
|
||||
"; g #898989",
|
||||
"> g #8E8E8E",
|
||||
", g #929292",
|
||||
"' g #989898",
|
||||
") g #9C9C9C",
|
||||
"! g #A0A0A0",
|
||||
"~ g #8F8F8F",
|
||||
"{ g #CBCBCB",
|
||||
"] g #E5E5E5",
|
||||
"^ g #F6F6F6",
|
||||
"...............................................................................................",
|
||||
"+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"###############################################################################################",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"***********************************************************************************************",
|
||||
"===============================================================================================",
|
||||
"-----------------------------------------------------------------------------------------------",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
")))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
")))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"};
|
||||
46
styles/BlueFlux/pixmaps/toolbar.xpm
Normal file
46
styles/BlueFlux/pixmaps/toolbar.xpm
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/* XPM */
|
||||
static char * toolbar_xpm[] = {
|
||||
"95 22 21 1",
|
||||
" c None",
|
||||
". c #7A949B",
|
||||
"+ c #93AAB2",
|
||||
"@ c #678895",
|
||||
"# c #527887",
|
||||
"$ c #507887",
|
||||
"% c #547A8A",
|
||||
"& c #587F8D",
|
||||
"* c #5C8491",
|
||||
"= c #5F8794",
|
||||
"- c #648C99",
|
||||
"; c #67909C",
|
||||
"> c #6B949F",
|
||||
", c #6F98A4",
|
||||
"' c #739CA7",
|
||||
") c #77A1AB",
|
||||
"! c #7BA5AE",
|
||||
"~ c #7FA9B2",
|
||||
"{ c #81ADB5",
|
||||
"] c #7FABB3",
|
||||
"^ c #759FA7",
|
||||
"...............................................................................................",
|
||||
"+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"###############################################################################################",
|
||||
"###############################################################################################",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"***********************************************************************************************",
|
||||
"===============================================================================================",
|
||||
"-----------------------------------------------------------------------------------------------",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
")))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"};
|
||||
47
styles/BlueFlux/pixmaps/toolbar_label.xpm
Normal file
47
styles/BlueFlux/pixmaps/toolbar_label.xpm
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/* XPM */
|
||||
static char * toolbar_label_xpm[] = {
|
||||
"95 22 22 1",
|
||||
" c None",
|
||||
". c #D1D5D6",
|
||||
"+ c #C5CACB",
|
||||
"@ c #C7CCCD",
|
||||
"# c #CACFCF",
|
||||
"$ c #CCD1D2",
|
||||
"% c #CFD3D4",
|
||||
"& c #D1D6D6",
|
||||
"* c #D4D8D8",
|
||||
"= c #D7DADB",
|
||||
"- c #D9DCDD",
|
||||
"; c #DCDFDF",
|
||||
"> c #DEE1E1",
|
||||
", c #E1E3E4",
|
||||
"' c #E4E6E6",
|
||||
") c #E6E8E8",
|
||||
"! c #E9EAEA",
|
||||
"~ c #EBECED",
|
||||
"{ c #EEEFEF",
|
||||
"] c #F0F1F1",
|
||||
"^ c #F3F3F3",
|
||||
"/ c #F6F6F6",
|
||||
"...............................................................................................",
|
||||
"...............................................................................................",
|
||||
"+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@",
|
||||
"###############################################################################################",
|
||||
"$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&",
|
||||
"***********************************************************************************************",
|
||||
"===============================================================================================",
|
||||
"-----------------------------------------------------------------------------------------------",
|
||||
";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''",
|
||||
")))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))))",
|
||||
"!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!",
|
||||
"~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~",
|
||||
"{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{{",
|
||||
"]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]",
|
||||
"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^",
|
||||
"///////////////////////////////////////////////////////////////////////////////////////////////"};
|
||||
177
styles/BlueFlux/theme.cfg
Normal file
177
styles/BlueFlux/theme.cfg
Normal file
|
|
@ -0,0 +1,177 @@
|
|||
# blueflux
|
||||
# theme for fluxbox
|
||||
# 2003 (c) BioNiK
|
||||
# edited from skypher's theme, thanks fluxgen for the awesome work with fluxbox ;)
|
||||
|
||||
toolbar: flat gradient vertical
|
||||
toolbar.color: #527d8b
|
||||
toolbar.colorTo: #527d8b
|
||||
|
||||
toolbar.label: flat gradient vertical
|
||||
|
||||
toolbar.label.pixmap: toolbar.xpm
|
||||
|
||||
toolbar.label.color: #527d8b
|
||||
toolbar.label.colorTo: #83aeb4
|
||||
toolbar.label.textColor: black
|
||||
|
||||
toolbar.windowLabel: flat gradient vertical
|
||||
|
||||
toolbar.windowLabel.pixmap: toolbar_label.xpm
|
||||
|
||||
toolbar.windowLabel.color: #0000ff
|
||||
toolbar.windowLabel.colorTo: #c0c6c7
|
||||
toolbar.windowLabel.textColor: black
|
||||
|
||||
toolbar.clock: flat gradient vertical
|
||||
|
||||
toolbar.clock.pixmap: toolbar.xpm
|
||||
|
||||
toolbar.clock.color: #527d8b
|
||||
toolbar.clock.colorTo: #527d8b
|
||||
toolbar.clock.textColor: black
|
||||
|
||||
toolbar.button: flat vertical gradient
|
||||
toolbar.button.color: #527d8b
|
||||
toolbar.button.colorTo: #527d8b
|
||||
toolbar.button.picColor: black
|
||||
|
||||
toolbar.button.pressed: flat gradient vertical
|
||||
toolbar.button.pressed.color: #83aeb4
|
||||
toolbar.button.pressed.colorTo: #527d8b
|
||||
|
||||
menu.title: flat gradient vertical pixmap
|
||||
|
||||
menu.title.pixmap: title_bar.xpm
|
||||
|
||||
menu.title.color: rgb:68/95/E3
|
||||
menu.title.colorTo: rgb:31/59/9C
|
||||
menu.title.textColor: black
|
||||
|
||||
menu.frame.pixmap: menu_frame.xpm
|
||||
|
||||
menu.frame: flat gradient vertical
|
||||
menu.frame.color: rgb:DB/DA/DB
|
||||
menu.frame.colorTo: rgb:D4/CE/D2
|
||||
menu.frame.textColor: rgb:45/45/45
|
||||
|
||||
menu.hilite: flat solid
|
||||
menu.hilite.color: rgb:91/A3/9E
|
||||
menu.hilite.textColor: white
|
||||
|
||||
menu.bullet: triangle
|
||||
menu.bullet.position: right
|
||||
|
||||
|
||||
slit.pixmap: menu_frame.xpm
|
||||
|
||||
|
||||
|
||||
! WIN FOCUS
|
||||
|
||||
window.title.focus: flat gradient vertical
|
||||
|
||||
window.label.focus.pixmap: title_bar.xpm
|
||||
window.label.unfocus.pixmap: title_bar_unfocus.xpm
|
||||
window.title.focus.pixmap: title_bar.xpm
|
||||
window.title.unfocus.pixmap: title_bar_unfocus.xpm
|
||||
|
||||
window.*.textColor: black
|
||||
window.title.focus.color: black
|
||||
window.title.focus.colorTo: black
|
||||
|
||||
window.label.focus: flat gradient vertical
|
||||
|
||||
window.label.pixmap: title_bar.xpm
|
||||
|
||||
window.label.focus.color: rgb:68/95/E3
|
||||
window.label.focus.colorTo: rgb:31/59/9C
|
||||
window.label.focus.textColor: black
|
||||
_
|
||||
window.button.focus: flat gradient vertical
|
||||
window.button.focus.color: rgb:EA/EA/EA
|
||||
window.button.focus.colorTo: rgb:94/9B/99
|
||||
window.button.focus.picColor: rgb:35/35/35
|
||||
|
||||
window.button.pressed: flat solid
|
||||
window.button.pressed.color: rgb:94/9B/99
|
||||
|
||||
window.handle.focus: flat solid
|
||||
window.handle.focus.color: rgb:EA/EA/EA
|
||||
|
||||
window.grip.focus: Raised Gradient vertical
|
||||
window.grip.focus.color: #83aeb4
|
||||
window.grip.focus.colorTo: #527d8b
|
||||
|
||||
window.frame.focusColor: black
|
||||
|
||||
|
||||
! unfocused win
|
||||
|
||||
window.title.unfocus: flat gradient vertical
|
||||
window.title.unfocus.color: rgb:D9/D9/D9
|
||||
window.title.unfocus.colorTo: white
|
||||
|
||||
|
||||
window.label.unfocus: raised gradient vertical
|
||||
window.label.unfocus.color: rgb:C6/C5/C6
|
||||
window.label.unfocus.colorTo: rgb:A7/A6/A7
|
||||
window.label.unfocus.textColor: black
|
||||
|
||||
window.button.unfocus: raised gradient vertical
|
||||
window.button.unfocus.color: rgb:EA/EA/EA
|
||||
window.button.unfocus.colorTo: rgb:94/9B/99
|
||||
window.button.unfocus.picColor: rgb:35/35/35
|
||||
|
||||
window.handle.unfocus: flat solid
|
||||
window.handle.unfocus.color: rgb:EA/EA/EA
|
||||
|
||||
window.grip.unfocus: flat solid
|
||||
window.grip.unfocus.color: rgb:EA/EA/EA
|
||||
|
||||
window.frame.unfocusColor: black
|
||||
|
||||
|
||||
|
||||
! PIXMAPS
|
||||
|
||||
window.close.pixmap: button_close_active.xpm
|
||||
window.maximize.pixmap: button_max_active.xpm
|
||||
window.iconify.pixmap: button_min_active.xpm
|
||||
window.stick.pixmap: button_stick_active.xpm
|
||||
|
||||
window.close.pressed.pixmap: button_close_pressed.xpm
|
||||
window.maximize.pressed.pixmap: button_max_pressed.xpm
|
||||
window.iconify.pressed.pixmap: button_min_pressed.xpm
|
||||
window.stick.pressed.pixmap: button_stick_pressed.xpm
|
||||
|
||||
window.close.unfocus.pixmap: button_close_unfocus.xpm
|
||||
window.maximize.unfocus.pixmap: button_max_unfocus.xpm
|
||||
window.iconify.unfocus.pixmap: button_min_unfocus.xpm
|
||||
window.stick.unfocus.pixmap: button_stick_unfocus.xpm
|
||||
|
||||
window.stuck.unfocus.pixmap: button_stuck_unfocus.xpm
|
||||
window.stuck.pixmap: button_stuck.xpm
|
||||
|
||||
|
||||
toolbar.button.pixmap: button_toolbar.xpm
|
||||
toolbar.button.pressed.pixmap: button_toolbar_pressed.xpm
|
||||
|
||||
|
||||
! FONTS
|
||||
|
||||
toolbar.justify: center
|
||||
window.justify: center
|
||||
menu.title.justify: center
|
||||
menu.frame.justify: left
|
||||
|
||||
*Font: Andale-10
|
||||
|
||||
borderColor: black
|
||||
borderWidth: 1
|
||||
bevelWidth: 0
|
||||
handleWidth: 3
|
||||
frameWidth: 0
|
||||
|
||||
! need this here, even though there is no background in the style
|
||||
background: none
|
||||
140
styles/BlueNight
Normal file
140
styles/BlueNight
Normal file
|
|
@ -0,0 +1,140 @@
|
|||
style.name: Blue Night v2
|
||||
style.author: mack@incise.org
|
||||
style.date: Mon Dec 31 2001
|
||||
style.credits:
|
||||
style.comments: Modified/tweaked by skypher
|
||||
|
||||
|
||||
background: flat
|
||||
background.color: rgb:6A/9A/AF
|
||||
|
||||
! Toolbar settings...
|
||||
toolbar.button: Gradient Diagonal
|
||||
toolbar.button.color: rgb:9B/9B/9B
|
||||
toolbar.button.colorTo: rgb:42/42/42
|
||||
toolbar.button.picColor: black
|
||||
|
||||
toolbar.button.pressed: Flat Gradient CrossDiagonal
|
||||
toolbar.button.pressed.color: #60747d
|
||||
toolbar.button.pressed.colorTo: #0e1a27
|
||||
|
||||
toolbar.label: Flat Gradient CrossDiagonal
|
||||
toolbar.label.color: #40545d
|
||||
toolbar.label.colorTo: #0e1a27
|
||||
toolbar.label.textColor: #ffffff
|
||||
|
||||
toolbar.windowLabel: Flat Gradient CrossDiagonal
|
||||
toolbar.windowLabel.color: #40545d
|
||||
toolbar.windowLabel.colorTo: #0e1a27
|
||||
toolbar.windowLabel.textColor: #ffffff
|
||||
|
||||
toolbar.clock: Flat Gradient CrossDiagonal
|
||||
toolbar.clock.color: #40545d
|
||||
toolbar.clock.colorTo: #0e1a27
|
||||
toolbar.clock.textColor: #ffffff
|
||||
|
||||
toolbar: Flat Solid CrossDiagonal
|
||||
toolbar.color: #000000
|
||||
toolbar.textColor: #333333
|
||||
toolbar.font: lucidasans-10
|
||||
toolbar.justify: Left
|
||||
|
||||
|
||||
! Menu settings...
|
||||
menu.frame: Flat Gradient CrossDiagonal
|
||||
menu.frame.color: #40545d
|
||||
menu.frame.colorTo: #0e1a27
|
||||
menu.frame.textColor: #ffffff
|
||||
menu.frame.font: lucidasans-10
|
||||
menu.frame.justify: Left
|
||||
|
||||
menu.title: Flat Gradient CrossDiagonal
|
||||
menu.title.color: #80949d
|
||||
menu.title.colorTo: #4e5a67
|
||||
menu.title.textColor: #ffffff
|
||||
menu.title.font: -*-lucida-bold-r-*-*-11-*-*-*-*-*-*-*
|
||||
menu.title.justify: Left
|
||||
|
||||
menu.hilite: Flat Gradient CrossDiagonal
|
||||
menu.hilite.color: #80949d
|
||||
menu.hilite.colorTo: #4e5a67
|
||||
menu.hilite.textColor: #ffffff
|
||||
|
||||
menu.bullet: Cube
|
||||
menu.bullet.position: Right
|
||||
menu.frame.disableColor: #777777
|
||||
|
||||
! Window settings...
|
||||
window.button.focus: Gradient Diagonal
|
||||
window.button.focus.color: rgb:9B/9B/9B
|
||||
window.button.focus.colorTo: rgb:42/42/42
|
||||
window.button.focus.picColor: black
|
||||
|
||||
window.button.unfocus: Solid
|
||||
window.button.unfocus.color: rgb:42/42/42
|
||||
! window.button.unfocus.colorTo: #ffffff
|
||||
window.button.unfocus.picColor: black
|
||||
|
||||
window.grip.focus: Flat Solid
|
||||
window.grip.focus.color: #60747d
|
||||
|
||||
window.grip.unfocus: Flat Solid
|
||||
window.grip.unfocus.color: rgb:42/42/42
|
||||
|
||||
window.handle.focus: Flat Solid
|
||||
window.handle.focus.color: #000000
|
||||
|
||||
window.handle.unfocus: Flat Solid
|
||||
window.handle.unfocus.color: #000000
|
||||
|
||||
window.label.focus: Flat Gradient CrossDiagonal
|
||||
window.label.focus.color: #60747d
|
||||
window.label.focus.colorTo: #0e1a27
|
||||
window.label.focus.textColor: #ffffff
|
||||
window.label.focus.font: lucidasans-10
|
||||
window.label.focus.justify: Left
|
||||
|
||||
window.font: lucidasans-10
|
||||
window.justify: Left
|
||||
window.label.unfocus: Flat Gradient CrossDiagonal
|
||||
window.label.unfocus.color: #40545d
|
||||
window.label.unfocus.colorTo: #000a17
|
||||
window.label.unfocus.textColor: #777777
|
||||
|
||||
window.title.focus: Flat Solid Horizontal
|
||||
window.title.focus.color: #000000
|
||||
window.title.focus.colorTo: #ffffff
|
||||
|
||||
window.title.unfocus: Flat Solid Horizontal
|
||||
window.title.unfocus.color: #000000
|
||||
window.title.unfocus.colorTo: #ffffff
|
||||
|
||||
window.button.pressed: Flat Gradient CrossDiagonal
|
||||
window.button.pressed.color: #60747d
|
||||
window.button.pressed.colorTo: #0e1a27
|
||||
|
||||
window.frame.focusColor: #000000
|
||||
window.frame.unfocusColor: #000000
|
||||
|
||||
! ----------- tab - explicit for fluxbox, the best wm out there[tm] (;
|
||||
window.tab.justify: Left
|
||||
|
||||
window.tab.label.focus: Flat Solid
|
||||
window.tab.label.focus.color: #60747d
|
||||
window.tab.label.focus.textColor: white
|
||||
|
||||
window.tab.label.unfocus: Sunken Solid
|
||||
window.tab.label.unfocus.color: #40545d
|
||||
window.tab.label.unfocus.textColor: rgb:90/90/90
|
||||
|
||||
window.tab.borderWidth: 1
|
||||
window.tab.borderColor: black
|
||||
|
||||
! ---------------
|
||||
|
||||
handleWidth: 3
|
||||
frameWidth: 0
|
||||
bevelWidth: 1
|
||||
borderWidth: 1
|
||||
borderColor: #000000
|
||||
|
||||
3
styles/Emerge/Makemodule.am
Normal file
3
styles/Emerge/Makemodule.am
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
emerge_styledir = $(pkgdatadir)/styles/Emerge
|
||||
|
||||
dist_emerge_style_DATA = data/styles/Emerge/theme.cfg
|
||||
21
styles/Emerge/pixmaps/Makemodule.am
Normal file
21
styles/Emerge/pixmaps/Makemodule.am
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
emerge_pixmaps_styledir = $(pkgdatadir)/styles/Emerge/pixmaps
|
||||
|
||||
dist_emerge_pixmaps_style_DATA = \
|
||||
data/styles/Emerge/pixmaps/bullet.xpm \
|
||||
data/styles/Emerge/pixmaps/close-pressed.xpm \
|
||||
data/styles/Emerge/pixmaps/close-unfocus.xpm \
|
||||
data/styles/Emerge/pixmaps/close.xpm \
|
||||
data/styles/Emerge/pixmaps/icon-pressed.xpm \
|
||||
data/styles/Emerge/pixmaps/icon-unfocus.xpm \
|
||||
data/styles/Emerge/pixmaps/icon.xpm \
|
||||
data/styles/Emerge/pixmaps/max-pressed.xpm \
|
||||
data/styles/Emerge/pixmaps/max-unfocus.xpm \
|
||||
data/styles/Emerge/pixmaps/max.xpm \
|
||||
data/styles/Emerge/pixmaps/selected.xpm \
|
||||
data/styles/Emerge/pixmaps/stick-pressed.xpm \
|
||||
data/styles/Emerge/pixmaps/stick-unfocus.xpm \
|
||||
data/styles/Emerge/pixmaps/stick.xpm \
|
||||
data/styles/Emerge/pixmaps/stuck-pressed.xpm \
|
||||
data/styles/Emerge/pixmaps/stuck-unfocus.xpm \
|
||||
data/styles/Emerge/pixmaps/stuck.xpm \
|
||||
data/styles/Emerge/pixmaps/unselected.xpm
|
||||
21
styles/Emerge/pixmaps/bullet.xpm
Normal file
21
styles/Emerge/pixmaps/bullet.xpm
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/* XPM */
|
||||
static char * bullet_xpm[] = {
|
||||
"16 16 2 1",
|
||||
" c None",
|
||||
". c #000000",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" . ",
|
||||
" .. ",
|
||||
" . .. ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" .. . ",
|
||||
" .. ",
|
||||
" . ",
|
||||
" ",
|
||||
" "};
|
||||
37
styles/Emerge/pixmaps/close-pressed.xpm
Normal file
37
styles/Emerge/pixmaps/close-pressed.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * close_pressed_xpm[] = {
|
||||
"20 17 17 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E5E5E5",
|
||||
"# c #DCDCDC",
|
||||
"$ c #CACACA",
|
||||
"% c #E8E8E8",
|
||||
"& c #000000",
|
||||
"* c #B0B0B0",
|
||||
"= c #D9D9D9",
|
||||
"- c #E2E2E2",
|
||||
"; c #DBDBDB",
|
||||
"> c #ADADAD",
|
||||
", c #C8C8C8",
|
||||
"' c #898989",
|
||||
") c #E6E6E6",
|
||||
"! c #888888",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@@+...+@@+....",
|
||||
"....+#$$#%.%#$$#+...",
|
||||
"....@$&&*=-;*&&$@...",
|
||||
"....@$&&&>,>&&&$@...",
|
||||
"....+#*&&&'&&&*#+...",
|
||||
".....%;>&&&&&>=)....",
|
||||
"......-,'&&&!,-.....",
|
||||
".....%;>&&&&&>=)....",
|
||||
"....+#*&&&'&&&*#+...",
|
||||
"....@$&&&>,>&&&$@...",
|
||||
"....@$&&*=-;*&&$@...",
|
||||
"....+#$$#%.%#$$#+...",
|
||||
".....+@@+...+@@+....",
|
||||
"...................."};
|
||||
47
styles/Emerge/pixmaps/close-unfocus.xpm
Normal file
47
styles/Emerge/pixmaps/close-unfocus.xpm
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/* XPM */
|
||||
static char * close_unfocus_xpm[] = {
|
||||
"20 17 27 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E8E8E8",
|
||||
"@ c #E0E0E0",
|
||||
"# c #FEFEFE",
|
||||
"$ c #B4B4B4",
|
||||
"% c #D4D4D4",
|
||||
"& c #E4E4E4",
|
||||
"* c #B6B6B6",
|
||||
"= c #D8D8D8",
|
||||
"- c #999999",
|
||||
"; c #C8C8C8",
|
||||
"> c #DCDCDC",
|
||||
", c #858585",
|
||||
"' c #969696",
|
||||
") c #606060",
|
||||
"! c #7C7C7C",
|
||||
"~ c #717171",
|
||||
"{ c #5A5A5A",
|
||||
"] c #6B6B6B",
|
||||
"^ c #E2E2E2",
|
||||
"/ c #747474",
|
||||
"( c #B3B3B3",
|
||||
"_ c #6E6E6E",
|
||||
": c #757575",
|
||||
"< c #727272",
|
||||
"[ c #7D7D7D",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@@+...+@@+....",
|
||||
"....+##$%&.&##*=+...",
|
||||
"....@###-;>###,*@...",
|
||||
"....@$###'###)!$@...",
|
||||
"....+%-#####)~-%+...",
|
||||
".....&;'###{]';^....",
|
||||
"......>#####/(>.....",
|
||||
".....&###{###';^....",
|
||||
"....+###)_:###-%+...",
|
||||
"....@##)~'('##<$@...",
|
||||
"....@*,!-;>;-<[*@...",
|
||||
"....+=*$%&.&%$*=+...",
|
||||
".....+@@+...+@@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
47
styles/Emerge/pixmaps/close.xpm
Normal file
47
styles/Emerge/pixmaps/close.xpm
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/* XPM */
|
||||
static char * close_xpm[] = {
|
||||
"20 17 27 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E5E5E5",
|
||||
"# c #000000",
|
||||
"$ c #CACACA",
|
||||
"% c #DCDCDC",
|
||||
"& c #E8E8E8",
|
||||
"* c #B0B0B0",
|
||||
"= c #D9D9D9",
|
||||
"- c #E2E2E2",
|
||||
"; c #A7A7A7",
|
||||
"> c #ADADAD",
|
||||
", c #757575",
|
||||
"' c #9D9D9D",
|
||||
") c #7B7B7B",
|
||||
"! c #919191",
|
||||
"~ c #DBDBDB",
|
||||
"{ c #747474",
|
||||
"] c #8C8C8C",
|
||||
"^ c #E6E6E6",
|
||||
"/ c #888888",
|
||||
"( c #C8C8C8",
|
||||
"_ c #898989",
|
||||
": c #7E7E7E",
|
||||
"< c #868686",
|
||||
"[ c #929292",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@@+...+@@+....",
|
||||
"....+##$%&.&##$%+...",
|
||||
"....@###*=-###;$@...",
|
||||
"....@$###>###,'$@...",
|
||||
"....+%*#####)!*%+...",
|
||||
".....&~>###{]>=^....",
|
||||
"......-#####/(-.....",
|
||||
".....&###{###>=^....",
|
||||
"....+###)]_###*%+...",
|
||||
"....@##:!>(>##<$@...",
|
||||
"....@$;'*=-~*<[$@...",
|
||||
"....+%$$%&.&%$$%+...",
|
||||
".....+@@+...+@@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
38
styles/Emerge/pixmaps/icon-pressed.xpm
Normal file
38
styles/Emerge/pixmaps/icon-pressed.xpm
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/* XPM */
|
||||
static char * icon_pressed_xpm[] = {
|
||||
"20 17 18 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E4E4E4",
|
||||
"% c #EEEEEE",
|
||||
"& c #DDDDDD",
|
||||
"* c #D3D3D3",
|
||||
"= c #D2D2D2",
|
||||
"- c #D0D0D0",
|
||||
"; c #D1D1D1",
|
||||
"> c #DEDEDE",
|
||||
", c #000000",
|
||||
"' c #CFCFCF",
|
||||
") c #D5D5D5",
|
||||
"! c #C8C8C8",
|
||||
"~ c #C5C5C5",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"........+@#@+.......",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@##$$$$#@+....",
|
||||
".....+@##$$$$#@+....",
|
||||
"....+%&*=----*;>+...",
|
||||
"....@&,,,,,,,,,'#...",
|
||||
"....#),,,,,,,,,!$...",
|
||||
"....@;,,,,,,,,,'#...",
|
||||
"....+>;~~~~~~~;>+...",
|
||||
".....+@##$$$$#@+....",
|
||||
"...................."};
|
||||
37
styles/Emerge/pixmaps/icon-unfocus.xpm
Normal file
37
styles/Emerge/pixmaps/icon-unfocus.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * icon_unfocus_xpm[] = {
|
||||
"20 17 17 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E8E8E8",
|
||||
"@ c #E1E1E1",
|
||||
"# c #DFDFDF",
|
||||
"$ c #DEDEDE",
|
||||
"% c #FEFEFE",
|
||||
"& c #C4C4C4",
|
||||
"* c #DBDBDB",
|
||||
"= c #888888",
|
||||
"- c #727272",
|
||||
"; c #B8B8B8",
|
||||
"> c #717171",
|
||||
", c #6B6B6B",
|
||||
"' c #6F6F6F",
|
||||
") c #B6B6B6",
|
||||
"! c #B4B4B4",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@##$$$$#@+....",
|
||||
"....+%%%%%%%%%&*+...",
|
||||
"....@%%%%%%%%%=&#...",
|
||||
"....#%%%%%%%%%-;$...",
|
||||
"....@&=>,,,,,'=&#...",
|
||||
"....+*&)!!!!!)&*+...",
|
||||
".....+@##$$$$#@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
37
styles/Emerge/pixmaps/icon.xpm
Normal file
37
styles/Emerge/pixmaps/icon.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * icon_xpm[] = {
|
||||
"20 17 17 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E4E4E4",
|
||||
"% c #000000",
|
||||
"& c #D1D1D1",
|
||||
"* c #DEDEDE",
|
||||
"= c #A0A0A0",
|
||||
"- c #CFCFCF",
|
||||
"; c #898989",
|
||||
"> c #C8C8C8",
|
||||
", c #858585",
|
||||
"' c #818181",
|
||||
") c #7F7F7F",
|
||||
"! c #C5C5C5",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@##$$$$#@+....",
|
||||
"....+%%%%%%%%%&*+...",
|
||||
"....@%%%%%%%%%=-#...",
|
||||
"....#%%%%%%%%%;>$...",
|
||||
"....@&=,')))),=-#...",
|
||||
"....+*&!!!!!!!&*+...",
|
||||
".....+@##$$$$#@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
39
styles/Emerge/pixmaps/max-pressed.xpm
Normal file
39
styles/Emerge/pixmaps/max-pressed.xpm
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
/* XPM */
|
||||
static char * max_pressed_xpm[] = {
|
||||
"20 17 19 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E4E4E4",
|
||||
"% c #DEDEDE",
|
||||
"& c #CDCDCD",
|
||||
"* c #C1C1C1",
|
||||
"= c #C0C0C0",
|
||||
"- c #000000",
|
||||
"; c #CBCBCB",
|
||||
"> c #A0A0A0",
|
||||
", c #BBBBBB",
|
||||
"' c #BDBDBD",
|
||||
") c #E1E1E1",
|
||||
"! c #E8E8E8",
|
||||
"~ c #EDEDED",
|
||||
"{ c #9E9E9E",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@##$$$$#@+....",
|
||||
"....+%&**====*&%+...",
|
||||
"....@&---------;#...",
|
||||
"....#*---------*$...",
|
||||
"....$=-->,='>--=$...",
|
||||
"....$=--')!)'--=$...",
|
||||
"....$=--=!~!=--=$...",
|
||||
"....$=--')!)'--=$...",
|
||||
"....$=-->,='{--=$...",
|
||||
"....#*---------*$...",
|
||||
"....@&---------;#...",
|
||||
"....+%&**====*&%+...",
|
||||
".....+@##$$$$#@+....",
|
||||
"...................."};
|
||||
45
styles/Emerge/pixmaps/max-unfocus.xpm
Normal file
45
styles/Emerge/pixmaps/max-unfocus.xpm
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/* XPM */
|
||||
static char * max_unfocus_xpm[] = {
|
||||
"20 17 25 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E2E2E2",
|
||||
"% c #DFDFDF",
|
||||
"& c #DEDEDE",
|
||||
"* c #FEFEFE",
|
||||
"= c #C4C4C4",
|
||||
"- c #898989",
|
||||
"; c #4C4C4C",
|
||||
"> c #5C5C5C",
|
||||
", c #686868",
|
||||
"' c #6A6A6A",
|
||||
") c #B9B9B9",
|
||||
"! c #E4E4E4",
|
||||
"~ c #929292",
|
||||
"{ c #B1B1B1",
|
||||
"] c #B7B7B7",
|
||||
"^ c #B2B2B2",
|
||||
"/ c #666666",
|
||||
"( c #E0E0E0",
|
||||
"_ c #E8E8E8",
|
||||
": c #E1E1E1",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@#$%&%$#@+....",
|
||||
"....+*********=&+...",
|
||||
"....@*********-=#...",
|
||||
"....#**;>,',**')!...",
|
||||
"....$**>~{]^**,]$...",
|
||||
"....%**/^&!&**']&...",
|
||||
"....&**']!.!**']&...",
|
||||
"....&**/^&!&**']&...",
|
||||
"....(*********/](...",
|
||||
"....(*********')&...",
|
||||
"....@=-',''','-=#...",
|
||||
"....+&=)]]]]])=&+...",
|
||||
"....._:%%&&&&%@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
47
styles/Emerge/pixmaps/max.xpm
Normal file
47
styles/Emerge/pixmaps/max.xpm
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/* XPM */
|
||||
static char * max_xpm[] = {
|
||||
"20 17 27 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E2E2E2",
|
||||
"% c #DFDFDF",
|
||||
"& c #DEDEDE",
|
||||
"* c #000000",
|
||||
"= c #CDCDCD",
|
||||
"- c #989898",
|
||||
"; c #CBCBCB",
|
||||
"> c #616161",
|
||||
", c #717171",
|
||||
"' c #7B7B7B",
|
||||
") c #7D7D7D",
|
||||
"! c #C1C1C1",
|
||||
"~ c #E4E4E4",
|
||||
"{ c #A0A0A0",
|
||||
"] c #BBBBBB",
|
||||
"^ c #C0C0C0",
|
||||
"/ c #BDBDBD",
|
||||
"( c #E1E1E1",
|
||||
"_ c #E8E8E8",
|
||||
": c #7C7C7C",
|
||||
"< c #EDEDED",
|
||||
"[ c #E0E0E0",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@#$%&%$#@+....",
|
||||
"....+*********=&+...",
|
||||
"....@*********-;#...",
|
||||
"....#**>,')'**)!~...",
|
||||
"....$**,{]^/**'^$...",
|
||||
"....%**'/(_(**:^&...",
|
||||
"....&**)^_<_**)^&...",
|
||||
"....&**'/(_(**:^&...",
|
||||
"....[*********'^[...",
|
||||
"....[*********)!&...",
|
||||
"....@=-)')))')-;#...",
|
||||
"....+&=!!^^^^!=&+...",
|
||||
"....._(%%&&&&%@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
21
styles/Emerge/pixmaps/selected.xpm
Normal file
21
styles/Emerge/pixmaps/selected.xpm
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/* XPM */
|
||||
static char * selected_xpm[] = {
|
||||
"16 16 2 1",
|
||||
" c None",
|
||||
". c #000000",
|
||||
" ",
|
||||
" .. ",
|
||||
" . ",
|
||||
" ............. ",
|
||||
" . .. . ",
|
||||
" . . . ",
|
||||
" . .. . ",
|
||||
" . . . . ",
|
||||
" . .. .. . ",
|
||||
" . ... . . ",
|
||||
" . . .. . ",
|
||||
" . ... . ",
|
||||
" . ... . ",
|
||||
" . . ",
|
||||
" ............. ",
|
||||
" "};
|
||||
33
styles/Emerge/pixmaps/stick-pressed.xpm
Normal file
33
styles/Emerge/pixmaps/stick-pressed.xpm
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
/* XPM */
|
||||
static char * stick_pressed_xpm[] = {
|
||||
"20 17 13 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E4E4E4",
|
||||
"% c #DEDEDE",
|
||||
"& c #CDCDCD",
|
||||
"* c #C1C1C1",
|
||||
"= c #C0C0C0",
|
||||
"- c #000000",
|
||||
"; c #CBCBCB",
|
||||
"> c #FEFEFE",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@##$$$$#@+....",
|
||||
"....+%&**====*&%+...",
|
||||
"....@&---------;#...",
|
||||
"....#*---------*$...",
|
||||
"....$=-->>>>>--=$...",
|
||||
"....$=-->-->>--=$...",
|
||||
"....$=-->>>>>--=$...",
|
||||
"....$=-->--->--=$...",
|
||||
"....$=-->>>>>--=$...",
|
||||
"....#*---------*$...",
|
||||
"....@&---------;#...",
|
||||
"....+%&**====*&%+...",
|
||||
".....+@##$$$$#@+....",
|
||||
"...................."};
|
||||
40
styles/Emerge/pixmaps/stick-unfocus.xpm
Normal file
40
styles/Emerge/pixmaps/stick-unfocus.xpm
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/* XPM */
|
||||
static char * stick_unfocus_xpm[] = {
|
||||
"20 17 20 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E2E2E2",
|
||||
"% c #DFDFDF",
|
||||
"& c #DEDEDE",
|
||||
"* c #FEFEFE",
|
||||
"= c #C4C4C4",
|
||||
"- c #898989",
|
||||
"; c #B7B7B7",
|
||||
"> c #6A6A6A",
|
||||
", c #B9B9B9",
|
||||
"' c #E4E4E4",
|
||||
") c #686868",
|
||||
"! c #E0E0E0",
|
||||
"~ c #666666",
|
||||
"{ c #E8E8E8",
|
||||
"] c #E1E1E1",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@#$%&%$#@+....",
|
||||
"....+*********=&+...",
|
||||
"....@*********-=#...",
|
||||
"....#**;;;;;**>,'...",
|
||||
"....$**;**;;**);$...",
|
||||
"....%**;;;;;**>;&...",
|
||||
"....&**;***;**>;&...",
|
||||
"....&**;;;;;**>;&...",
|
||||
"....!*********~;!...",
|
||||
"....!*********>,&...",
|
||||
"....@=->)>>>)>-=#...",
|
||||
"....+&=,;;;;;,=&+...",
|
||||
".....{]%%&&&&%@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
42
styles/Emerge/pixmaps/stick.xpm
Normal file
42
styles/Emerge/pixmaps/stick.xpm
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
/* XPM */
|
||||
static char * stick_xpm[] = {
|
||||
"20 17 22 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E2E2E2",
|
||||
"% c #DFDFDF",
|
||||
"& c #DEDEDE",
|
||||
"* c #000000",
|
||||
"= c #CDCDCD",
|
||||
"- c #989898",
|
||||
"; c #CBCBCB",
|
||||
"> c #FEFEFE",
|
||||
", c #7D7D7D",
|
||||
"' c #C1C1C1",
|
||||
") c #E4E4E4",
|
||||
"! c #7B7B7B",
|
||||
"~ c #C0C0C0",
|
||||
"{ c #7C7C7C",
|
||||
"] c #E0E0E0",
|
||||
"^ c #E8E8E8",
|
||||
"/ c #E1E1E1",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@#$%&%$#@+....",
|
||||
"....+*********=&+...",
|
||||
"....@*********-;#...",
|
||||
"....#**>>>>>**,')...",
|
||||
"....$**>**>>**!~$...",
|
||||
"....%**>>>>>**{~&...",
|
||||
"....&**>***>**,~&...",
|
||||
"....&**>>>>>**{~&...",
|
||||
"....]*********!~]...",
|
||||
"....]*********,'&...",
|
||||
"....@=-,!,,,!,-;#...",
|
||||
"....+&=''~~~~'=&+...",
|
||||
".....^/%%&&&&%@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
38
styles/Emerge/pixmaps/stuck-pressed.xpm
Normal file
38
styles/Emerge/pixmaps/stuck-pressed.xpm
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
/* XPM */
|
||||
static char * stuck_pressed_xpm[] = {
|
||||
"20 17 18 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E4E4E4",
|
||||
"% c #DEDEDE",
|
||||
"& c #CDCDCD",
|
||||
"* c #C1C1C1",
|
||||
"= c #C0C0C0",
|
||||
"- c #000000",
|
||||
"; c #CBCBCB",
|
||||
"> c #A0A0A0",
|
||||
", c #BBBBBB",
|
||||
"' c #BDBDBD",
|
||||
") c #E1E1E1",
|
||||
"! c #E8E8E8",
|
||||
"~ c #EDEDED",
|
||||
"....................",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@##$$$$#@+....",
|
||||
"....+%&**====*&%+...",
|
||||
"....@&---------;#...",
|
||||
"....#*---------*$...",
|
||||
"....$=-->,='>--=$...",
|
||||
"....$=--')!)'--=$...",
|
||||
"....$=--=!-----=$...",
|
||||
"....$=--')-~!--=$...",
|
||||
"....$=-->,-!)--=$...",
|
||||
"....#*---------*$...",
|
||||
"....@&---------;#...",
|
||||
"....+%&**====*&%+...",
|
||||
".....+@##$$$$#@+....",
|
||||
"...................."};
|
||||
45
styles/Emerge/pixmaps/stuck-unfocus.xpm
Normal file
45
styles/Emerge/pixmaps/stuck-unfocus.xpm
Normal file
|
|
@ -0,0 +1,45 @@
|
|||
/* XPM */
|
||||
static char * stuck_unfocus_xpm[] = {
|
||||
"20 17 25 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E2E2E2",
|
||||
"% c #DFDFDF",
|
||||
"& c #DEDEDE",
|
||||
"* c #FEFEFE",
|
||||
"= c #C4C4C4",
|
||||
"- c #898989",
|
||||
"; c #4C4C4C",
|
||||
"> c #5C5C5C",
|
||||
", c #686868",
|
||||
"' c #6A6A6A",
|
||||
") c #B9B9B9",
|
||||
"! c #E4E4E4",
|
||||
"~ c #929292",
|
||||
"{ c #B1B1B1",
|
||||
"] c #B7B7B7",
|
||||
"^ c #B2B2B2",
|
||||
"/ c #666666",
|
||||
"( c #E0E0E0",
|
||||
"_ c #E8E8E8",
|
||||
": c #E1E1E1",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@#$%&%$#@+....",
|
||||
"....+*********=&+...",
|
||||
"....@*********-=#...",
|
||||
"....#**;>,',**')!...",
|
||||
"....$**>~{]^**,]$...",
|
||||
"....%**/^*****']&...",
|
||||
"....&**']*.!**']&...",
|
||||
"....&**/^*!&**']&...",
|
||||
"....(*********/](...",
|
||||
"....(*********')&...",
|
||||
"....@=-',''','-=#...",
|
||||
"....+&=)]]]]])=&+...",
|
||||
"....._:%%&&&&%@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
47
styles/Emerge/pixmaps/stuck.xpm
Normal file
47
styles/Emerge/pixmaps/stuck.xpm
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
/* XPM */
|
||||
static char * stuck_xpm[] = {
|
||||
"20 17 27 1",
|
||||
" c None",
|
||||
". c #EBEBEB",
|
||||
"+ c #E9E9E9",
|
||||
"@ c #E6E6E6",
|
||||
"# c #E5E5E5",
|
||||
"$ c #E2E2E2",
|
||||
"% c #DFDFDF",
|
||||
"& c #DEDEDE",
|
||||
"* c #000000",
|
||||
"= c #CDCDCD",
|
||||
"- c #989898",
|
||||
"; c #CBCBCB",
|
||||
"> c #616161",
|
||||
", c #717171",
|
||||
"' c #7B7B7B",
|
||||
") c #7D7D7D",
|
||||
"! c #C1C1C1",
|
||||
"~ c #E4E4E4",
|
||||
"{ c #A0A0A0",
|
||||
"] c #BBBBBB",
|
||||
"^ c #C0C0C0",
|
||||
"/ c #BDBDBD",
|
||||
"( c #7C7C7C",
|
||||
"_ c #EDEDED",
|
||||
": c #E8E8E8",
|
||||
"< c #E1E1E1",
|
||||
"[ c #E0E0E0",
|
||||
"....................",
|
||||
"....................",
|
||||
".....+@#$%&%$#@+....",
|
||||
"....+*********=&+...",
|
||||
"....@*********-;#...",
|
||||
"....#**>,')'**)!~...",
|
||||
"....$**,{]^/**'^$...",
|
||||
"....%**'/*****(^&...",
|
||||
"....&**)^*_:**)^&...",
|
||||
"....&**'/*:<**(^&...",
|
||||
"....[*********'^[...",
|
||||
"....[*********)!&...",
|
||||
"....@=-)')))')-;#...",
|
||||
"....+&=!!^^^^!=&+...",
|
||||
".....:<%%&&&&%@+....",
|
||||
"....................",
|
||||
"...................."};
|
||||
21
styles/Emerge/pixmaps/unselected.xpm
Normal file
21
styles/Emerge/pixmaps/unselected.xpm
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
/* XPM */
|
||||
static char * unselected_xpm[] = {
|
||||
"16 16 2 1",
|
||||
" c None",
|
||||
". c #000000",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ............. ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" . . ",
|
||||
" ............. ",
|
||||
" "};
|
||||
197
styles/Emerge/theme.cfg
Normal file
197
styles/Emerge/theme.cfg
Normal file
|
|
@ -0,0 +1,197 @@
|
|||
!---------------------------------------------------------------------------------
|
||||
! FluxMOD www.imaginere.dk
|
||||
! Style name: Emerge
|
||||
! Style Author: ikaro ( ikaro@bersirc.com )
|
||||
! Style Date: Sun Sep 14 08:25:12 CEST 2003
|
||||
! Style info: Simple desktop, clean and stylish.
|
||||
! Style Comments: Thank you Henrik for making Fluxbox.
|
||||
!
|
||||
!----------------------------------------------------------------------------------
|
||||
|
||||
!menu:
|
||||
menu.title: Raised Bevel1 Gradient Vertical
|
||||
menu.title.textColor: #000000
|
||||
!menu.title.pixmap:
|
||||
menu.title.color: #ebebeb
|
||||
menu.title.colorTo: #ffffff
|
||||
!menu.title.font:
|
||||
menu.title.justify: Center
|
||||
|
||||
|
||||
!menu.frame.pixmap:
|
||||
menu.frame: Raised Bevel1 Gradient CrossDiagonal
|
||||
menu.frame.color: #ffffff
|
||||
menu.frame.colorTo: #ebebeb
|
||||
menu.frame.textColor: #000000
|
||||
menu.frame.disableColor:
|
||||
!menu.frame.font:
|
||||
menu.frame.justify: Left
|
||||
menu.bullet.position: Left
|
||||
menu.bullet: Square
|
||||
menu.bevelWidth: 2
|
||||
menu.borderwidth: 1
|
||||
menu.borderColor: #000000
|
||||
|
||||
|
||||
menu.hilite: Raised Bevel2 Gradient Vertical
|
||||
menu.hilite.textColor: #000000
|
||||
!menu.hilite.pixmap:
|
||||
menu.hilite.color: #ebebeb
|
||||
menu.hilite.colorTo: #ffffff
|
||||
|
||||
menu.submenu.pixmap: bullet.xpm
|
||||
menu.selected.pixmap: selected.xpm
|
||||
menu.unselected.pixmap: unselected.xpm
|
||||
!menu.roundCorners:
|
||||
|
||||
!window.font:
|
||||
window.justify: Center
|
||||
!window.roundCorners:
|
||||
window.alpha: 255
|
||||
window.title.height:
|
||||
window.bevelWidth: 2
|
||||
window.borderWidth: 1
|
||||
window.handleWidth: 4
|
||||
window.borderColor: #525050
|
||||
|
||||
window.close.pixmap: close.xpm
|
||||
window.maximize.pixmap: max.xpm
|
||||
window.iconify.pixmap: icon.xpm
|
||||
window.stick.pixmap: stick.xpm
|
||||
|
||||
window.close.pressed.pixmap: close-pressed.xpm
|
||||
window.maximize.pressed.pixmap: max-pressed.xpm
|
||||
window.iconify.pressed.pixmap: icon-pressed.xpm
|
||||
window.stick.pressed.pixmap: stick-pressed.xpm
|
||||
|
||||
window.close.unfocus.pixmap: close-unfocus.xpm
|
||||
window.maximize.unfocus.pixmap: max-unfocus.xpm
|
||||
window.iconify.unfocus.pixmap: icon-unfocus.xpm
|
||||
window.stick.unfocus.pixmap: stick-unfocus.xpm
|
||||
|
||||
window.stuck.pixmap: stuck.xpm
|
||||
window.stuck.unfocus.pixmap: stuck-unfocus.xpm
|
||||
|
||||
!window.shade.pixmap:
|
||||
!window.shade.pressed.pixmap:
|
||||
!window.shade.unfocus.pixmap:
|
||||
|
||||
window.grip.focus: Raised Bevel1 Gradient Vertical
|
||||
!window.grip.focus.pixmap:
|
||||
window.grip.focus.color: #ebebeb
|
||||
window.grip.focus.colorTo: #ffffff
|
||||
|
||||
window.grip.unfocus: Raised Bevel1 Gradient Vertical
|
||||
!window.grip.unfocus.pixmap:
|
||||
window.grip.unfocus.color: #cfcfcf
|
||||
window.grip.unfocus.colorTo: #cfcfcf
|
||||
|
||||
window.handle.focus: Raised Bevel1 Gradient Vertical
|
||||
!window.handle.focus.pixmap:
|
||||
window.handle.focus.color: #ebebeb
|
||||
window.handle.focus.colorTo: #ffffff
|
||||
|
||||
window.handle.unfocus: Raised Bevel1 Gradient Vertical
|
||||
!window.handle.unfocus.pixmap:
|
||||
window.handle.unfocus.color: #cfcfcf
|
||||
window.handle.unfocus.colorTo: #cfcfcf
|
||||
|
||||
window.label.focus: Raised Bevel1 Gradient Vertical
|
||||
!window.label.focus.pixmap:
|
||||
window.label.focus.color: #ebebeb
|
||||
window.label.focus.colorTo: #ffffff
|
||||
window.label.focus.textColor: #000000
|
||||
!window.label.focus.font:
|
||||
window.label.focus.justify: Center
|
||||
|
||||
window.justify: Center
|
||||
window.label.unfocus: Raised Bevel1 Gradient Vertical
|
||||
!window.label.unfocus.pixmap:
|
||||
window.label.unfocus.color: #e3e3e3
|
||||
window.label.unfocus.colorTo: #e3e3e3
|
||||
window.label.unfocus.textColor: #747171
|
||||
|
||||
window.title.focus: Flat
|
||||
!window.title.focus.pixmap:
|
||||
window.title.focus.color: #ebebeb
|
||||
window.title.focus.colorTo:
|
||||
|
||||
window.title.unfocus: Flat
|
||||
!window.title.unfocus.pixmap:
|
||||
window.title.unfocus.color: #ebebeb
|
||||
window.title.unfocus.colorTo:
|
||||
window.frame.focusColor: #525050
|
||||
window.frame.unfocusColor: #525050
|
||||
|
||||
|
||||
*.font: sans-8
|
||||
|
||||
slit: Raised Bevel2 Gradient Horizontal
|
||||
!slit.pixmap:
|
||||
slit.color: #ebebeb
|
||||
slit.colorTo: #ffffff
|
||||
slit.borderWidth: 1
|
||||
slit.bevelWidth: 1
|
||||
slit.borderColor: #ffffff
|
||||
|
||||
toolbar: Flat
|
||||
!toolbar.pixmap:
|
||||
toolbar.color: #ebebeb
|
||||
toolbar.colorTo:
|
||||
toolbar.borderWidth: 1
|
||||
toolbar.borderColor: #525050
|
||||
toolbar.bevelWidth: 2
|
||||
toolbar.shaped: True
|
||||
toolbar.alpha: 255
|
||||
toolbar.height: 17
|
||||
|
||||
toolbar.clock: Raised Bevel1 Gradient Vertical
|
||||
!toolbar.clock.pixmap:
|
||||
toolbar.clock.color: #ebebeb
|
||||
toolbar.clock.colorTo: #cfcfcf
|
||||
!toolbar.clock.font:
|
||||
toolbar.clock.textColor: #000000
|
||||
toolbar.clock.borderWidth: 0
|
||||
toolbar.clock.borderColor:
|
||||
toolbar.clock.justify: Center
|
||||
|
||||
toolbar.workspace: Raised Bevel1 Gradient Vertical
|
||||
!toolbar.workspace.pixmap:
|
||||
toolbar.workspace.color: #ebebeb
|
||||
toolbar.workspace.colorTo: #cfcfcf
|
||||
toolbar.workspace.borderWidth: 0
|
||||
toolbar.workspace.borderColor:
|
||||
!toolbar.workspace.font:
|
||||
toolbar.workspace.textColor: #000000
|
||||
toolbar.workspace.justify: Center
|
||||
|
||||
toolbar.iconbar.focused: Raised Bevel1 Gradient Vertical
|
||||
!toolbar.iconbar.focused.pixmap:
|
||||
toolbar.iconbar.focused.color: #ebebeb
|
||||
toolbar.iconbar.focused.colorTo: #dbdbdb
|
||||
toolbar.iconbar.focused.borderWidth: 1
|
||||
toolbar.iconbar.focused.borderColor: #5e5b5b
|
||||
!toolbar.iconbar.focused.font:
|
||||
toolbar.iconbar.focused.textColor: #000000
|
||||
toolbar.iconbar.focused.justify: Center
|
||||
|
||||
toolbar.iconbar.unfocused: Raised Bevel1 Gradient Vertical
|
||||
!toolbar.iconbar.unfocused.pixmap:
|
||||
toolbar.iconbar.unfocused.color: #ebebeb
|
||||
toolbar.iconbar.unfocused.colorTo: #cfcfcf
|
||||
toolbar.iconbar.unfocused.borderWidth: 0
|
||||
toolbar.iconbar.unfocused.borderColor:
|
||||
!toolbar.iconbar.unfocused.font:
|
||||
toolbar.iconbar.unfocused.textColor: #747171
|
||||
toolbar.iconbar.unfocused.justify: Center
|
||||
|
||||
toolbar.iconbar.empty: Raised Bevel1 Gradient Vertical
|
||||
!toolbar.iconbar.empty.pixmap:
|
||||
toolbar.iconbar.empty.color:#ebebeb
|
||||
toolbar.iconbar.empty.colorTo: #cfcfcf
|
||||
|
||||
toolbar.iconbar.borderWidth: 1
|
||||
toolbar.iconbar.borderColor: #dbdbdb
|
||||
|
||||
! need this here, even though there is no background in the style
|
||||
background: none
|
||||
92
styles/Flux
Normal file
92
styles/Flux
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
toolbar: flat solid
|
||||
toolbar.color: rgb:6/6/54
|
||||
toolbar.button: flat solid
|
||||
toolbar.button.color: rgb:6/6/54
|
||||
toolbar.button.picColor: rgb:2/2/1c
|
||||
toolbar.label: flat crossdiagonal gradient
|
||||
toolbar.label.color: rgb:8/8/7
|
||||
toolbar.label.colorTo: rgb:f/f/d
|
||||
toolbar.label.textColor: rgb:2/2/1c
|
||||
toolbar.windowLabel: flat crossdiagonal gradient
|
||||
toolbar.windowLabel.color: rgb:8/8/7
|
||||
toolbar.windowLabel.colorTo: rgb:f/f/d
|
||||
toolbar.windowLabel.textColor: rgb:2/2/1c
|
||||
toolbar.clock: flat crossdiagonal gradient
|
||||
toolbar.clock.color: rgb:8/8/7
|
||||
toolbar.clock.colorTo: rgb:f/f/d
|
||||
toolbar.clock.textColor: rgb:2/2/1c
|
||||
toolbar.justify: right
|
||||
toolbar.font: lucidasans-10
|
||||
|
||||
menu.title: flat crossdiagonal gradient
|
||||
menu.title.color: rgb:8/8/7
|
||||
menu.title.colorTo: rgb:f/f/d
|
||||
menu.title.textColor: rgb:2/2/1c
|
||||
menu.title.font: lucidasans-10
|
||||
menu.title.justify: right
|
||||
|
||||
menu.frame: flat solid
|
||||
menu.frame.color: rgb:6/6/54
|
||||
menu.frame.textColor: grey85
|
||||
menu.frame.disableColor: rgb:4/4/38
|
||||
menu.frame.font: lucidasans-10
|
||||
menu.frame.justify: center
|
||||
|
||||
menu.bullet.position: right
|
||||
menu.bullet: triangle
|
||||
|
||||
menu.hilite: flat solid
|
||||
menu.hilite.color: rgb:4/4/38
|
||||
menu.hilite.textColor: white
|
||||
|
||||
window.title.focus: flat solid
|
||||
window.title.focus.color: rgb:6/6/54
|
||||
window.title.unfocus: flat solid
|
||||
window.title.unfocus.color: rgb:4/4/38
|
||||
|
||||
window.label.focus: flat crossdiagonal gradient
|
||||
window.label.focus.color: rgb:8/8/7
|
||||
window.label.focus.colorTo: rgb:f/f/d
|
||||
window.label.focus.textColor: rgb:2/2/1c
|
||||
window.label.unfocus: flat solid
|
||||
window.label.unfocus.color: rgb:4/4/38
|
||||
window.label.unfocus.textColor: rgb:2/2/1c
|
||||
|
||||
window.button.focus: flat solid
|
||||
window.button.focus.color: rgb:6/6/54
|
||||
window.button.focus.picColor: rgb:2/2/1c
|
||||
window.button.unfocus: flat solid
|
||||
window.button.unfocus.color: rgb:4/4/38
|
||||
window.button.unfocus.picColor: rgb:2/2/1c
|
||||
|
||||
window.handle.focus: flat crossdiagonal gradient
|
||||
window.handle.focus.color: rgb:8/8/7
|
||||
window.handle.focus.colorTo: rgb:f/f/d
|
||||
window.handle.unfocus: flat solid
|
||||
window.handle.unfocus.color: rgb:4/4/38
|
||||
|
||||
window.grip.focus: flat solid
|
||||
window.grip.focus.color: rgb:8/8/7
|
||||
window.grip.unfocus: flat solid
|
||||
window.grip.unfocus.color: rgb:4/4/38
|
||||
|
||||
window.frame.focusColor: rgb:f/f/d
|
||||
window.frame.unfocusColor: rgb:6/6/54
|
||||
|
||||
window.font: lucidasans-10
|
||||
window.justify: right
|
||||
|
||||
*button.pressed: flat solid
|
||||
*button.pressed.color: rgb:a/a/8c
|
||||
|
||||
borderColor: rgb:2/2/1c
|
||||
|
||||
bevelWidth: 2
|
||||
borderWidth: 2
|
||||
handleWidth: 3
|
||||
|
||||
*textColor: grey20
|
||||
*Font: lucidasans-10
|
||||
|
||||
background: flat
|
||||
background.color: rgb:4/4/38
|
||||
129
styles/LemonSpace
Normal file
129
styles/LemonSpace
Normal file
|
|
@ -0,0 +1,129 @@
|
|||
! LemonSpace was made by xlife@zuavra.net.
|
||||
! The official home of the theme is this:
|
||||
! http://xlife.zuavra.net/blackbox/styles/
|
||||
! If you make other themes inspired or
|
||||
! derived from this one please send them
|
||||
! to me so I can enjoy them as well.
|
||||
! You need the Snap font from the Artwiz
|
||||
! pack for this, see the site for details.
|
||||
|
||||
toolbar: raised gradient vertical
|
||||
! toolbar.color: rgb:e3/cd/a6
|
||||
toolbar.color: rgb:cb/ac/73
|
||||
toolbar.colorTo: rgb:40/40/40
|
||||
|
||||
toolbar.button: raised gradient vertical
|
||||
toolbar.button.picColor: rgb:1a/04/08
|
||||
toolbar.button.color: rgb:dd/dd/d
|
||||
toolbar.button.colorTo: rgb:c0/c0/c0
|
||||
toolbar.button.pressed: sunken gradient vertical
|
||||
toolbar.button.pressed.color: rgb:dd/dd/dd
|
||||
toolbar.button.pressed.colorTo: rgb:c0/c0/c0
|
||||
|
||||
toolbar.label: raised gradient vertical
|
||||
toolbar.label.color: rgb:f6/df/93
|
||||
toolbar.label.colorTo: rgb:ee/b9/6b
|
||||
toolbar.label.textColor: rgb:1a/04/08
|
||||
|
||||
toolbar.windowLabel: raised gradient vertical
|
||||
toolbar.windowLabel.color: rgb:f6/df/93
|
||||
toolbar.windowLabel.colorTo: rgb:ee/b9/6b
|
||||
toolbar.windowLabel.textColor: rgb:1a/04/08
|
||||
|
||||
toolbar.clock: raised gradient vertical
|
||||
toolbar.clock.color: rgb:f6/df/93
|
||||
toolbar.clock.colorTo: rgb:ee/b9/6b
|
||||
toolbar.clock.textColor: rgb:1a/04/08
|
||||
|
||||
toolbar.justify: Center
|
||||
|
||||
menu.title: raised gradient vertical
|
||||
menu.title.color: rgb:f6/df/93
|
||||
menu.title.colorTo: rgb:ee/b9/6b
|
||||
menu.title.textColor: rgb:0/0/0
|
||||
menu.title.justify: center
|
||||
|
||||
menu.frame: raised gradient vertical
|
||||
menu.frame.color: rgb:dd/dd/dd
|
||||
menu.frame.colorTo: rgb:c0/c0/c0
|
||||
menu.frame.textColor: rgb:0/0/0
|
||||
menu.frame.justify: left
|
||||
|
||||
menu.hilite: flat solid
|
||||
menu.hilite.textColor: rgb:f/f/f
|
||||
menu.hilite.color: rgb:30/30/30
|
||||
|
||||
menu.bullet: triangle
|
||||
menu.bullet.position: right
|
||||
|
||||
! window.title.focus: flat solid
|
||||
! window.title.focus.color: rgb:e3/cd/a6
|
||||
|
||||
window.title.focus: raised gradient vertical
|
||||
window.title.focus.color: rgb:cb/ac/73
|
||||
window.title.focus.colorTo: rgb:40/40/40
|
||||
window.title.unfocus: raised gradient vertical
|
||||
window.title.unfocus.color: rgb:b0/b0/b0
|
||||
window.title.unfocus.colorTo: rgb:50/50/50
|
||||
|
||||
window.label.focus: raised gradient vertical
|
||||
window.label.focus.color: rgb:f6/df/93
|
||||
window.label.focus.colorTo: rgb:ee/b9/6b
|
||||
window.label.focus.textColor: rgb:1a/04/08
|
||||
window.label.unfocus: raised gradient vertical
|
||||
window.label.unfocus.color: rgb:dd/dd/dd
|
||||
window.label.unfocus.colorTo: rgb:c0/c0/c0
|
||||
window.label.unfocus.textColor: rgb:5a/5a/5a
|
||||
|
||||
window.handle.focus: raised gradient vertical
|
||||
window.handle.focus.color: rgb:cc/cc/cc
|
||||
window.handle.focus.colorTo: rgb:d0/d0/d0
|
||||
window.handle.unfocus: raised gradient vertical
|
||||
window.handle.unfocus.color: rgb:d0/d0/d0
|
||||
window.handle.unfocus.colorTo: rgb:cc/cc/cc
|
||||
|
||||
window.grip.focus: raised gradient vertical
|
||||
window.grip.focus.color: rgb:f6/df/93
|
||||
window.grip.focus.colorTo: rgb:ee/b9/6b
|
||||
window.grip.unfocus: raised gradient vertical
|
||||
window.grip.unfocus.color: rgb:dd/dd/dd
|
||||
window.grip.unfocus.colorTo: rgb:c0/c0/c0
|
||||
|
||||
window.button.focus: raised gradient vertical
|
||||
window.button.focus.color: rgb:dd/dd/dd
|
||||
window.button.focus.colorTo: rgb:c0/c0/c0
|
||||
! window.button.focus.color: rgb:f6/df/93
|
||||
! window.button.focus.colorTo: rgb:ee/b9/6b
|
||||
window.button.focus.picColor: rgb:0/0/0
|
||||
window.button.unfocus: raised gradient vertical
|
||||
window.button.unfocus.color: rgb:dd/dd/dd
|
||||
window.button.unfocus.colorTo: rgb:c0/c0/c0
|
||||
window.button.unfocus.picColor: rgb:0/0/0
|
||||
|
||||
window.button.pressed: sunken gradient diagonal
|
||||
window.button.pressed.color: rgb:f6/df/93
|
||||
window.button.pressed.colorTo: rgb:ee/b9/6b
|
||||
|
||||
window.frame.focusColor: rgb:e3/cd/a6
|
||||
window.frame.unfocusColor: rgb:6/6/6
|
||||
|
||||
window.justify: center
|
||||
|
||||
borderColor: rgb:0/0/0
|
||||
|
||||
borderWidth: 1
|
||||
bevelWidth: 1
|
||||
handleWidth: 4
|
||||
|
||||
*font: gelly2
|
||||
menu*font: glisp
|
||||
toolbar*font: glisp
|
||||
|
||||
*textColor: rgb:c/c/c
|
||||
! - for fluxbox
|
||||
window.tab.label.unfocus.textColor: rgb:5a/5a/5a
|
||||
window.tab.label.focus.textColor: rgb:1a/04/08
|
||||
! -
|
||||
|
||||
background: flat
|
||||
background.color: rgb:db/bc/83
|
||||
19
styles/Makemodule.am
Normal file
19
styles/Makemodule.am
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
styledir = $(pkgdatadir)/styles
|
||||
|
||||
style_DATA = \
|
||||
data/styles/Artwiz \
|
||||
data/styles/BlueNight \
|
||||
data/styles/Flux \
|
||||
data/styles/LemonSpace \
|
||||
data/styles/Makro \
|
||||
data/styles/MerleyKay \
|
||||
data/styles/Meta \
|
||||
data/styles/Nyz \
|
||||
data/styles/Operation \
|
||||
data/styles/Outcomes \
|
||||
data/styles/Results \
|
||||
data/styles/Shade \
|
||||
data/styles/Twice \
|
||||
data/styles/qnx-photon
|
||||
|
||||
EXTRA_DIST += $(style_DATA)
|
||||
117
styles/Makro
Normal file
117
styles/Makro
Normal file
|
|
@ -0,0 +1,117 @@
|
|||
# "Makro"
|
||||
# A Fluxbox theme by: skypher of perplexity
|
||||
# 2001
|
||||
|
||||
toolbar: Gradient Vertical Sunken
|
||||
toolbar.color: rgb:CC/CC/AA
|
||||
|
||||
toolbar.button: Flat Solid
|
||||
toolbar.button.color: rgb:AB/90/40
|
||||
toolbar.button.picColor: rgb:50/30/10
|
||||
|
||||
toolbar.button.pressed: Sunken Flat
|
||||
toolbar.button.pressed.color: rgb:90/70/20
|
||||
|
||||
toolbar.clock: Flat
|
||||
toolbar.clock.color: rgb:AB/90/40
|
||||
toolbar.clock.textColor: rgb:40/20/05
|
||||
|
||||
toolbar.label: Flat
|
||||
toolbar.label.color: rgb:AB/90/40
|
||||
toolbar.label.textColor: rgb:40/20/05
|
||||
|
||||
toolbar.windowLabel: Flat
|
||||
toolbar.windowLabel.color: rgb:AB/90/40
|
||||
toolbar.windowLabel.textColor: rgb:40/20/05
|
||||
|
||||
toolbar.justify: Left
|
||||
|
||||
menu.title: Raised Flat
|
||||
menu.title.color: rgb:AB/90/40
|
||||
menu.title.textColor: rgb:40/20/05
|
||||
menu.title.justify: Left
|
||||
|
||||
menu.frame: Gradient PipeCross
|
||||
menu.frame.color: rgb:CC/CC/AA
|
||||
menu.frame.colorTo: rgb:AB/AA/90
|
||||
menu.frame.textColor: rgb:10/10/01
|
||||
menu.frame.justify: Right
|
||||
|
||||
menu.hilite: Flat
|
||||
menu.hilite.color: rgb:DF/CF/BF
|
||||
menu.hilite.textColor: rgb:00/00/00
|
||||
|
||||
menu.bullet: Square
|
||||
menu.bullet.position: Right
|
||||
|
||||
|
||||
window.title.focus: Gradient Vertical Sunken
|
||||
window.title.focus.color: rgb:CC/CC/AA
|
||||
|
||||
window.title.unfocus: Gradient Vertical Sunken
|
||||
window.title.unfocus.color: rgb:AC/AC/90
|
||||
|
||||
window.label.focus: Solid Flat
|
||||
window.label.focus.color: rgb:AB/90/40
|
||||
window.label.focus.textColor: rgb:40/20/05
|
||||
|
||||
window.label.unfocus: Flat Solid
|
||||
window.label.unfocus.color: rgb:AA/80/30
|
||||
window.label.unfocus.textColor: rgb:45/25/10
|
||||
|
||||
window.button.focus: Flat Solid
|
||||
window.button.focus.color: rgb:AC/99/50
|
||||
window.button.focus.picColor: rgb:40/20/05
|
||||
|
||||
window.button.unfocus: Flat Solid
|
||||
window.button.unfocus.color: rgb:AA/80/30
|
||||
window.button.unfocus.picColor: rgb:45/25/10
|
||||
|
||||
window.button.pressed: Sunken Solid
|
||||
window.button.pressed.color: rgb:90/70/20
|
||||
|
||||
window.frame.focus: Flat
|
||||
window.frame.focus.color: rgb:00/00/00
|
||||
window.frame.unfocus: Flat
|
||||
window.frame.unfocus.color: rgb:10/10/10
|
||||
|
||||
window.handle.focus: Sunken Solid
|
||||
window.handle.focus.color: rgb:AC/99/50
|
||||
window.handle.unfocus: Flat Solid
|
||||
window.handle.unfocus.color: rgb:AA/80/30
|
||||
|
||||
window.grip.focus: Sunken Gradient Diagonal Interlaced
|
||||
window.grip.focus.color: rgb:AC/99/50
|
||||
window.grip.focus.colorTo: rgb:AA/80/30
|
||||
window.grip.unfocus: Raised Gradient Diagonal
|
||||
window.grip.unfocus.color: rgb:AA/80/30
|
||||
window.grip.unfocus.colorTo: rgb:AC/99/50
|
||||
|
||||
! ----------- tab - explicit for fluxbox, the best wm out there[tm] (;
|
||||
window.tab.justify: Center
|
||||
window.tab.label.unfocus: Flat Solid
|
||||
window.tab.label.unfocus.color: rgb:AA/80/30
|
||||
window.tab.label.unfocus.textColor: rgb:45/25/10
|
||||
window.tab.label.focus: Solid Flat
|
||||
window.tab.label.focus.color: rgb:AB/90/40
|
||||
window.tab.label.focus.textColor: rgb:40/20/05
|
||||
window.tab.borderWidth: 1
|
||||
window.tab.borderColor: rgb:10/10/10
|
||||
! ----------- (fluxbox.sourceforge.net)
|
||||
window.tab.font: -*-helvetica-medium-r-*-*-11-*-*-*-*-*-iso8859-*
|
||||
|
||||
window.justify: Left
|
||||
|
||||
toolbar.font: -*-helvetica-medium-r-*-*-11-*-*-*-*-*-iso8859-*
|
||||
window.font: -*-helvetica-bold-r-*-*-11-*-*-*-*-*-iso8859-*
|
||||
menu.title.font: -*-helvetica-bold-r-*-*-11-*-*-*-*-*-iso8859-*
|
||||
menu.frame.font: -*-helvetica-medium-r-*-*-10-*-*-*-*-*-iso8859-*
|
||||
|
||||
borderColor: rgb:10/10/10
|
||||
|
||||
bevelWidth: 2
|
||||
borderWidth: 1
|
||||
handleWidth: 3
|
||||
|
||||
background: flat
|
||||
background.color: rgb:9A/9A/90
|
||||
138
styles/MerleyKay
Normal file
138
styles/MerleyKay
Normal file
|
|
@ -0,0 +1,138 @@
|
|||
# Merely Kay
|
||||
# A Fluxbox theme by: skypher of perplexity
|
||||
# 2001
|
||||
# (Not created from scratch, basicly a modification of "Simple Elegance"
|
||||
# by Pax, thanks!)
|
||||
# update: added *.tab.* stuff to make fluxbox look real cool :)
|
||||
|
||||
toolbar: Raised Gradient Vertical
|
||||
toolbar.color: rgb:62/70/85
|
||||
toolbar.colorTo: rgb:56/66/75
|
||||
|
||||
toolbar.button: Raised Gradient Horizontal Interlaced
|
||||
toolbar.button.color: rgb:62/70/85
|
||||
toolbar.button.colorTo: rgb:56/66/75
|
||||
toolbar.button.picColor: rgb:FF/FF/FF
|
||||
|
||||
toolbar.button.pressed: Sunken Gradient Horizontal
|
||||
toolbar.button.pressed.color: rgb:42/50/65
|
||||
toolbar.button.pressed.colorTo: rgb:36/46/55
|
||||
|
||||
toolbar.clock: Sunken Gradient Vertical Interlaced
|
||||
toolbar.clock.color: rgb:62/70/85
|
||||
toolbar.clock.colorTo: rgb:56/66/75
|
||||
toolbar.clock.textColor: rgb:FF/FF/FF
|
||||
|
||||
toolbar.label: Sunken Gradient Vertical Interlaced
|
||||
toolbar.label.color: rgb:62/70/85
|
||||
toolbar.label.colorTo: rgb:56/66/75
|
||||
toolbar.label.textColor: rgb:FF/FF/FF
|
||||
|
||||
toolbar.windowLabel: Raised Gradient Vertical Interlaced
|
||||
toolbar.windowLabel.color: rgb:62/70/85
|
||||
toolbar.windowLabel.colorTo: rgb:56/66/75
|
||||
toolbar.windowLabel.textColor: rgb:FF/FF/FF
|
||||
|
||||
toolbar.justify: center
|
||||
|
||||
menu.title: Raised Gradient Horizontal Interlaced
|
||||
menu.title.color: rgb:62/66/70
|
||||
menu.title.colorTo: rgb:56/60/68
|
||||
menu.title.textColor: rgb:E9/E9/E9
|
||||
menu.title.justify: Center
|
||||
|
||||
menu.frame: Sunken Gradient PipeCross
|
||||
menu.frame.color: rgb:62/70/85
|
||||
menu.frame.colorTo: rgb:56/66/75
|
||||
menu.frame.textColor: rgb:E2/E2/E2
|
||||
menu.frame.justify: Left
|
||||
|
||||
menu.hilite: Raised Gradient PipeCross
|
||||
menu.hilite.color: rgb:50/50/50
|
||||
menu.hilite.colorTo: rgb:42/42/42
|
||||
menu.hilite.textColor: rgb:FF/FF/FF
|
||||
|
||||
menu.bullet: Triangle
|
||||
menu.bullet.position: Right
|
||||
|
||||
window.title.focus: Raised Gradient Vertical Interlaced
|
||||
window.title.focus.color: rgb:62/70/85
|
||||
window.title.focus.colorTo: rgb:56/66/75
|
||||
window.title.unfocus: Raised Gradient Vertical
|
||||
window.title.unfocus.color: rgb:60/66/70
|
||||
window.title.unfocus.colorTo: rgb:54/60/68
|
||||
|
||||
window.label.focus: Flat Gradient Vertical Interlaced
|
||||
window.label.focus.color: rgb:62/70/85
|
||||
window.label.focus.colorTo: rgb:56/66/75
|
||||
window.label.focus.textColor: rgb:FF/FF/FF
|
||||
window.label.unfocus: Flat Gradient Vertical
|
||||
window.label.unfocus.color: rgb:60/66/70
|
||||
window.label.unfocus.colorTo: rgb:54/60/68
|
||||
window.label.unfocus.textColor: rgb:C1/C1/C1
|
||||
|
||||
window.button.focus: Raised Gradient Diagonal Bevel1
|
||||
window.button.focus.color: rgb:9B/9B/9B
|
||||
window.button.focus.colorTo: rgb:42/42/42
|
||||
window.button.focus.picColor: rgb:E2/E2/E2
|
||||
window.button.unfocus: Raised Gradient Diagonal Bevel1
|
||||
window.button.unfocus.color: rgb:9B/9B/9B
|
||||
window.button.unfocus.colorTo: rgb:42/42/42
|
||||
window.button.unfocus.picColor: rgb:C1/C1/C1
|
||||
window.button.pressed: Sunken Gradient Diagonal Bevel1
|
||||
window.button.pressed.color: rgb:9B/9B/9B
|
||||
window.button.pressed.colorTo: rgb:42/42/42
|
||||
|
||||
window.frame.focus: Sunken
|
||||
window.frame.focus.color: rgb:87/99/9F
|
||||
window.frame.unfocus: Sunken
|
||||
window.frame.unfocus.color: rgb:87/99/9F
|
||||
|
||||
window.handle.focus: Raised Gradient Diagonal
|
||||
window.handle.focus.color: rgb:62/70/85
|
||||
window.handle.focus.colorTo: rgb:56/66/75
|
||||
window.handle.unfocus: Raised Gradient Diagonal
|
||||
window.handle.unfocus.color: rgb:60/66/70
|
||||
window.handle.unfocus.colorTo: rgb:54/60/68
|
||||
|
||||
window.grip.focus: Raised Gradient Diagonal Interlaced
|
||||
window.grip.focus.color: rgb:9B/9B/9B
|
||||
window.grip.focus.colorTo: rgb:42/42/42
|
||||
window.grip.unfocus: Raised Gradient Diagonal
|
||||
window.grip.unfocus.color: rgb:9B/9B/9B
|
||||
window.grip.unfocus.colorTo: rgb:42/42/42
|
||||
|
||||
! ----------- tab - explicit for fluxbox, the best wm out there[tm] (;
|
||||
window.tab.justify: Left
|
||||
window.tab.label.unfocus: Sunken Gradient Vertical
|
||||
window.tab.label.unfocus.color: rgb:50/50/50
|
||||
window.tab.label.unfocus.colorTo: rgb:54/60/68
|
||||
window.tab.label.unfocus.textColor: rgb:AA/AA/AA
|
||||
window.tab.label.focus: Raised Gradient Vertical
|
||||
window.tab.label.focus.color: rgb:62/70/85
|
||||
window.tab.label.focus.colorTo: rgb:556/66/75
|
||||
window.tab.label.focus.textColor: #FFFFFF
|
||||
window.tab.borderWidth: 2
|
||||
window.tab.borderColor: black
|
||||
! ----------- (fluxbox.sourceforge.net)
|
||||
|
||||
window.justify: Center
|
||||
|
||||
window.tab.font: -*-clean-medium-r-*-*-12-*-*-*-*-60-iso8859-*
|
||||
toolbar.font: -*-lucida-bold-r-*-*-*-100-*-*-*-*-*-*
|
||||
window.font: -*-helvetica-medium-r-normal-*-12-*-*-*-*-*-iso8859-*
|
||||
#menu.title.font: -*-lucida-bold-r-*-*-*-100-*-*-*-*-*-*
|
||||
menu.title.font: -*-lucida-bold-r-*-*-*-100-*-*-*-*-*-*
|
||||
menu.frame.font: -*-lucida-medium-r-*-*-*-100-*-*-*-*-*-*
|
||||
|
||||
borderColor: rgb:00/00/00
|
||||
|
||||
bevelWidth: 2
|
||||
borderWidth: 2
|
||||
handleWidth: 3
|
||||
|
||||
background: mod
|
||||
background.modX: 5
|
||||
background.modY: 5
|
||||
background.color: rgb:52/60/75
|
||||
background.colorTo: rgb:62/70/85
|
||||
130
styles/Meta
Normal file
130
styles/Meta
Normal file
|
|
@ -0,0 +1,130 @@
|
|||
! meta
|
||||
! (c) joel carlbark 2003
|
||||
! please dont turn on aa with this style
|
||||
! make sure you have the font 'glisp' (or similar).
|
||||
|
||||
toolbar: flat gradient vertical
|
||||
toolbar.color: #849ec6
|
||||
toolbar.colorTo: #526d8c
|
||||
|
||||
toolbar.button: parentrelative
|
||||
toolbar.button.picColor: #d6d7e7
|
||||
|
||||
toolbar.button.pressed: sunken solid
|
||||
toolbar.button.pressed.color: #526d8c
|
||||
toolbar.button.pressed.picColor: #000000
|
||||
|
||||
! clock
|
||||
toolbar.clock: parentrelative
|
||||
toolbar.clock.textColor: white
|
||||
|
||||
! shows workspace nr
|
||||
toolbar.label: parentrelative
|
||||
toolbar.label.textColor: white
|
||||
|
||||
! current active window / toolbar
|
||||
toolbar.windowLabel: parentrelative
|
||||
toolbar.windowLabel.textColor: white
|
||||
|
||||
! menu ---------
|
||||
menu.title: flat gradient vertical
|
||||
menu.title.color: #849ec6
|
||||
menu.title.colorTo: #526d8c
|
||||
menu.title.textColor: #d6d7e7
|
||||
|
||||
menu.frame: flat gradient vertical
|
||||
menu.frame.color: #efefef
|
||||
menu.frame.colorTo: #c6c3c6
|
||||
menu.frame.textColor: black
|
||||
|
||||
menu.hilite: flat solid
|
||||
menu.hilite.color: #849ec6
|
||||
menu.hilite.textColor: white
|
||||
|
||||
menu.bullet: triangle
|
||||
menu.bullet.position: right
|
||||
|
||||
! window --------------
|
||||
window.title.focus: flat gradient vertical
|
||||
window.title.focus.color: #849ec6
|
||||
window.title.focus.colorTo: #526d8c
|
||||
|
||||
window.label.focus: parentrelative
|
||||
window.label.focus.textColor: white
|
||||
|
||||
window.button.focus: flat gradient vertical
|
||||
window.button.focus.color: #849ec6
|
||||
window.button.focus.colorTo: #526d8c
|
||||
window.button.focus.picColor: #d6d7e7
|
||||
|
||||
window.button.pressed: sunken solid
|
||||
window.button.pressed.color: #405060
|
||||
window.button.pressed.picColor: #000000
|
||||
|
||||
window.handle.focus: flat gradient vertical
|
||||
window.handle.focus.color: #efefef
|
||||
window.handle.focus.colorTo: #c6c3c6
|
||||
|
||||
window.grip.focus: flat gradient vertical
|
||||
window.grip.focus.color: #efefef
|
||||
window.grip.focus.colorTo: #c6c3c6
|
||||
|
||||
window.frame.focus: flat solid
|
||||
window.frame.focus.color: white
|
||||
|
||||
! unfocused
|
||||
window.title.unfocus: flat gradient vertical
|
||||
window.title.unfocus.color: #efefef
|
||||
window.title.unfocus.colorTo: #c6c3c6
|
||||
|
||||
window.label.unfocus: parentrelative
|
||||
window.label.unfocus.textColor: #949694
|
||||
|
||||
window.handle.unfocus: flat gradient vertical
|
||||
window.handle.unfocus.color: #efefef
|
||||
window.handle.unfocus.colorTo: #c6c3c6
|
||||
|
||||
window.grip.unfocus: flat gradient vertical
|
||||
window.grip.unfocus.color: #efefef
|
||||
window.grip.unfocus.colorTo: #c6c3c6
|
||||
|
||||
window.frame.unfocus: flat solid
|
||||
window.frame.unfocus.color: white
|
||||
|
||||
window.button.unfocus: flat gradient vertical
|
||||
window.button.unfocus.color: #efefef
|
||||
window.button.unfocus.colorTo: #c6c3c6
|
||||
window.button.unfocus.picColor: #949694
|
||||
|
||||
! tabs ------
|
||||
window.tab.justify: left
|
||||
|
||||
window.tab.label.focus: flat gradient vertical
|
||||
window.tab.label.focus.color: #849ec6
|
||||
window.tab.label.focus.colorTo: #526d8c
|
||||
window.tab.label.focus.textColor: #d6d7e7
|
||||
|
||||
window.tab.label.unfocus: flat gradient vertical
|
||||
window.tab.label.unfocus.color: #efefef
|
||||
window.tab.label.unfocus.colorTo: #c6c3c6
|
||||
window.tab.label.unfocus.textColor: #949694
|
||||
|
||||
window.tab.borderWidth: 1
|
||||
window.tab.borderColor: #949694
|
||||
! -------
|
||||
|
||||
toolbar.justify: left
|
||||
window.justify: center
|
||||
menu.title.justify: center
|
||||
menu.frame.justify: left
|
||||
|
||||
borderColor: #000000
|
||||
borderWidth: 1
|
||||
bevelWidth: 1
|
||||
frameWidth: 1
|
||||
handleWidth: 4
|
||||
|
||||
background: flat
|
||||
background.color: #d6d7e7
|
||||
|
||||
*font: glisp
|
||||
105
styles/Nyz
Normal file
105
styles/Nyz
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
toolbar: flat diagonal gradient
|
||||
toolbar.color: rgb:6/9/c
|
||||
toolbar.colorTo: rgb:4/6/8
|
||||
toolbar.button: flat diagonal gradient
|
||||
toolbar.button.color: rgb:3/48/6
|
||||
toolbar.button.colorTo: rgb:5/78/a
|
||||
toolbar.button.picColor: rgb:1/18/2
|
||||
toolbar.button.pressed: flat crossdiagonal gradient
|
||||
toolbar.button.pressed.color: grey40
|
||||
toolbar.button.pressed.colorTo: grey20
|
||||
toolbar.label: flat crossdiagonal gradient
|
||||
toolbar.label.color: grey40
|
||||
toolbar.label.colorTo: grey20
|
||||
toolbar.label.textColor: grey85
|
||||
toolbar.windowLabel: flat crossdiagonal gradient
|
||||
toolbar.windowLabel.color: grey40
|
||||
toolbar.windowLabel.colorTo: grey20
|
||||
toolbar.windowLabel.textColor: grey85
|
||||
toolbar.clock: flat crossdiagonal gradient
|
||||
toolbar.clock.color: grey40
|
||||
toolbar.clock.colorTo: grey20
|
||||
toolbar.clock.textColor: grey85
|
||||
toolbar.justify: right
|
||||
toolbar.font: lucidasans-10
|
||||
|
||||
menu.title: flat crossdiagonal gradient
|
||||
menu.title.color: rgb:6/9/c
|
||||
menu.title.colorTo: rgb:3/48/6
|
||||
menu.title.textColor: white
|
||||
menu.title.font: lucidasans-10
|
||||
menu.title.justify: right
|
||||
|
||||
menu.frame: flat crossdiagonal gradient
|
||||
menu.frame.color: grey40
|
||||
menu.frame.colorTo: grey20
|
||||
menu.frame.textColor: grey85
|
||||
menu.frame.disableColor: rgb:4/4/38
|
||||
menu.frame.font: lucidasans-10
|
||||
menu.frame.justify: center
|
||||
|
||||
menu.bullet.position: right
|
||||
menu.bullet: triangle
|
||||
|
||||
menu.hilite: flat crossdiagonal gradient
|
||||
menu.hilite.color: rgb:6/9/c
|
||||
menu.hilite.colorTo: rgb:3/48/6
|
||||
menu.hilite.textColor: white
|
||||
|
||||
window.title.focus: flat diagonal gradient
|
||||
window.title.focus.color: rgb:6/9/c
|
||||
window.title.focus.colorTo: rgb:4/6/8
|
||||
window.title.unfocus: flat solid
|
||||
window.title.unfocus.color: grey30
|
||||
|
||||
window.label.focus: flat crossdiagonal gradient
|
||||
window.label.focus.color: grey40
|
||||
window.label.focus.colorTo: grey20
|
||||
window.label.focus.textColor: white
|
||||
window.label.unfocus: flat crossdiagonal gradient
|
||||
window.label.unfocus.color: grey30
|
||||
window.label.unfocus.colorTo: grey20
|
||||
window.label.unfocus.textColor: grey60
|
||||
|
||||
window.button.focus: flat diagonal gradient
|
||||
window.button.focus.color: rgb:4/6/8
|
||||
window.button.focus.colorTo: rgb:5/78/a
|
||||
window.button.focus.picColor: rgb:1/18/2
|
||||
window.button.unfocus: flat solid
|
||||
window.button.unfocus.color: grey30
|
||||
window.button.unfocus.picColor: grey20
|
||||
window.button.pressed: flat crossdiagonal gradient
|
||||
window.button.pressed.color: grey40
|
||||
window.button.pressed.colorTo: grey20
|
||||
|
||||
window.handle.focus: flat crossdiagonal gradient
|
||||
window.handle.focus.color: rgb:6/9/c
|
||||
window.handle.focus.colorTo: rgb:3/48/6
|
||||
window.handle.unfocus: flat solid
|
||||
window.handle.unfocus.color: grey30
|
||||
|
||||
window.grip.focus: flat crossdiagonal gradient
|
||||
window.grip.focus.color: grey40
|
||||
window.grip.focus.colorTo: grey20
|
||||
window.grip.unfocus: flat crossdiagonal gradient
|
||||
window.grip.unfocus.color: grey30
|
||||
window.grip.unfocus.colorTo: grey20
|
||||
|
||||
window.frame.focusColor: rgb:6/9/c
|
||||
window.frame.unfocusColor: grey30
|
||||
|
||||
window.font: lucidasans-10
|
||||
window.justify: right
|
||||
|
||||
borderColor: grey10
|
||||
|
||||
bevelWidth: 1
|
||||
borderWidth: 2
|
||||
handleWidth: 4
|
||||
|
||||
*textColor: grey85
|
||||
*Font: lucidasans-10
|
||||
|
||||
|
||||
background: flat
|
||||
background.color: grey20
|
||||
93
styles/Operation
Normal file
93
styles/Operation
Normal file
|
|
@ -0,0 +1,93 @@
|
|||
toolbar: flat crossdiagonal gradient
|
||||
toolbar.color: rgb:6/9/c
|
||||
toolbar.colorTo: rgb:4/6/8
|
||||
toolbar.button: parentrelative
|
||||
toolbar.button.picColor: grey85
|
||||
toolbar.button.pressed: flat crossdiagonal gradient
|
||||
toolbar.button.pressed.color: grey50
|
||||
toolbar.button.pressed.colorTo: grey80
|
||||
toolbar.label: parentrelative
|
||||
toolbar.label.textColor: grey85
|
||||
toolbar.windowLabel: parentrelative
|
||||
toolbar.windowLabel.textColor: grey85
|
||||
toolbar.clock: parentrelative
|
||||
toolbar.clock.textColor: grey85
|
||||
toolbar.justify: right
|
||||
toolbar.font: lucidasans-10
|
||||
|
||||
menu.title: flat crossdiagonal gradient
|
||||
menu.title.color: rgb:6/9/c
|
||||
menu.title.colorTo: rgb:3/48/6
|
||||
menu.title.textColor: white
|
||||
menu.title.font: lucidasans-10
|
||||
menu.title.justify: right
|
||||
|
||||
menu.frame: flat crossdiagonal gradient
|
||||
menu.frame.color: grey50
|
||||
menu.frame.colorTo: grey80
|
||||
menu.frame.textColor: grey20
|
||||
menu.frame.disableColor: grey40
|
||||
menu.frame.font: lucidasans-10
|
||||
menu.frame.justify: center
|
||||
|
||||
menu.bullet.position: right
|
||||
menu.bullet: triangle
|
||||
|
||||
menu.hilite: flat crossdiagonal gradient
|
||||
menu.hilite.color: rgb:6/9/c
|
||||
menu.hilite.colorTo: rgb:3/48/6
|
||||
menu.hilite.textColor: white
|
||||
|
||||
window.title.focus: flat crossdiagonal gradient
|
||||
window.title.focus.color: rgb:6/9/c
|
||||
window.title.focus.colorTo: rgb:3/48/6
|
||||
window.title.unfocus: flat diagonal gradient
|
||||
window.title.unfocus.color: grey50
|
||||
window.title.unfocus.colorTo: grey20
|
||||
|
||||
window.label.focus: parentrelative
|
||||
window.label.focus.textColor: white
|
||||
window.label.unfocus: parentrelative
|
||||
window.label.unfocus.textColor: grey60
|
||||
|
||||
window.button.focus: parentrelative
|
||||
window.button.focus.picColor: grey85
|
||||
window.button.unfocus: parentrelative
|
||||
window.button.unfocus.picColor: grey60
|
||||
window.button.pressed: flat crossdiagonal gradient
|
||||
window.button.pressed.color: grey50
|
||||
window.button.pressed.colorTo: grey80
|
||||
|
||||
window.handle.focus: flat crossdiagonal gradient
|
||||
window.handle.focus.color: rgb:6/9/c
|
||||
window.handle.focus.colorTo: rgb:3/48/6
|
||||
window.handle.unfocus: flat diagonal gradient
|
||||
window.handle.unfocus.color: grey50
|
||||
window.handle.unfocus.colorTo: grey20
|
||||
|
||||
window.grip.focus: parentrelative
|
||||
window.grip.unfocus: parentrelative
|
||||
|
||||
window.frame.focusColor: rgb:6/9/c
|
||||
window.frame.unfocusColor: grey50
|
||||
|
||||
window.font: lucidasans-10
|
||||
window.justify: right
|
||||
|
||||
borderColor: rgb:2/3/4
|
||||
|
||||
bevelWidth: 1
|
||||
borderWidth: 1
|
||||
handleWidth: 4
|
||||
|
||||
*textColor: grey85
|
||||
*Font: lucidasans-10
|
||||
|
||||
background: flatcrossdiagonalgradient
|
||||
background.color: rgb:4/6/8
|
||||
background.colorTo: rgb:3/48/6
|
||||
|
||||
bbpager.desktop.focus: flat interlaced crossdiagonal gradient
|
||||
bbpager.desktop.focus.color: rgb:6/9/c
|
||||
bbpager.desktop.focus.colorTo: rgb:3/48/6
|
||||
|
||||
118
styles/Outcomes
Normal file
118
styles/Outcomes
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
toolbar: raised diagonal gradient bevel1
|
||||
toolbar.color: rgb:7/8/8
|
||||
toolbar.colorTo: grey20
|
||||
|
||||
toolbar.button: raised diagonal gradient bevel1
|
||||
toolbar.button.color: grey
|
||||
toolbar.button.colorTo: grey20
|
||||
toolbar.button.picColor: black
|
||||
toolbar.button.pressed: sunken diagonal interlaced gradient bevel1
|
||||
toolbar.button.pressed.color: rgb:38/4/4
|
||||
toolbar.button.pressed.colorTo: rgb:d/f/f
|
||||
|
||||
toolbar.label: flat interlaced diagonal gradient
|
||||
toolbar.label.color: grey20
|
||||
toolbar.label.colorTo: rgb:7/8/8
|
||||
toolbar.label.textColor: grey85
|
||||
|
||||
toolbar.windowLabel: flat interlaced diagonal gradient
|
||||
toolbar.windowLabel.color: grey20
|
||||
toolbar.windowLabel.colorTo: rgb:7/8/8
|
||||
toolbar.windowLabel.textColor: grey85
|
||||
|
||||
toolbar.clock: flat interlaced diagonal gradient
|
||||
toolbar.clock.color: grey20
|
||||
toolbar.clock.colorTo: rgb:7/8/8
|
||||
toolbar.clock.textColor: grey85
|
||||
|
||||
toolbar.justify: center
|
||||
toolbar.font: lucidasans-bold-10
|
||||
|
||||
menu.title: raised diagonal interlaced gradient bevel1
|
||||
menu.title.color: grey20
|
||||
menu.title.colorTo: rgb:7/8/8
|
||||
menu.title.textColor: grey85
|
||||
menu.title.font: lucidasans-bold-10
|
||||
menu.title.justify: center
|
||||
|
||||
menu.frame: raised diagonal gradient bevel1
|
||||
menu.frame.color: rgb:7/8/8
|
||||
menu.frame.colorTo: grey10
|
||||
menu.frame.textColor: white
|
||||
menu.frame.disableColor: rgb:38/4/4
|
||||
menu.frame.font: lucidasans-10
|
||||
menu.frame.justify: center
|
||||
|
||||
menu.bullet: triangle
|
||||
menu.bullet.position: right
|
||||
|
||||
menu.hilite: raised diagonal gradient bevel1
|
||||
menu.hilite.color: grey60
|
||||
menu.hilite.colorTo: white
|
||||
menu.hilite.textColor: grey20
|
||||
|
||||
window.title.focus: raised diagonal gradient bevel1
|
||||
window.title.focus.color: rgb:7/8/8
|
||||
window.title.focus.colorTo: grey20
|
||||
window.title.unfocus: raised diagonal gradient bevel1
|
||||
window.title.unfocus.color: rgb:54/6/6
|
||||
window.title.unfocus.colorTo: grey20
|
||||
|
||||
window.label.focus: interlaced sunken diagonal gradient bevel1
|
||||
window.label.focus.color: grey20
|
||||
window.label.focus.colorTo: grey
|
||||
window.label.focus.textColor: white
|
||||
window.label.unfocus: interlaced flat gradient
|
||||
window.label.unfocus.color: grey20
|
||||
window.label.unfocus.colorTo: rgb:54/6/6
|
||||
window.label.unfocus.textColor: grey
|
||||
|
||||
window.handle.focus: raised diagonal gradient bevel1
|
||||
window.handle.focus.color: rgb:7/8/8
|
||||
window.handle.focus.colorTo: grey20
|
||||
window.handle.unfocus: raised diagonal gradient bevel1
|
||||
window.handle.unfocus.color: rgb:54/6/6
|
||||
window.handle.unfocus.colorTo: grey20
|
||||
|
||||
window.grip.focus: raised diagonal gradient bevel1
|
||||
window.grip.focus.color: grey
|
||||
window.grip.focus.colorTo: grey20
|
||||
window.grip.unfocus: sunken diagonal gradient bevel1
|
||||
window.grip.unfocus.color: grey20
|
||||
window.grip.unfocus.colorTo: grey
|
||||
|
||||
|
||||
window.button.focus: raised diagonal gradient bevel1
|
||||
window.button.focus.color: grey
|
||||
window.button.focus.colorTo: grey20
|
||||
window.button.focus.picColor: black
|
||||
window.button.unfocus: sunken diagonal gradient bevel1
|
||||
window.button.unfocus.color: grey20
|
||||
window.button.unfocus.colorTo: grey
|
||||
window.button.unfocus.picColor: grey40
|
||||
window.button.pressed: flat diagonal interlaced gradient
|
||||
window.button.pressed.color: rgb:38/4/4
|
||||
window.button.pressed.colorTo: rgb:d/f/f
|
||||
|
||||
window.frame.focusColor: grey85
|
||||
window.frame.unfocusColor: rgb:54/6/6
|
||||
|
||||
window.font: lucidasans-bold-10
|
||||
window.justify: center
|
||||
|
||||
! misc...
|
||||
borderColor: rgb:1c/2/2
|
||||
|
||||
borderWidth: 1
|
||||
bevelWidth: 2
|
||||
handleWidth: 4
|
||||
|
||||
background: mod
|
||||
background.modX: 4
|
||||
background.modY: 4
|
||||
background.color: grey20
|
||||
background.colorTo: rgb:54/6/6
|
||||
|
||||
! for the bbtools
|
||||
menuFont: lucidasans-10
|
||||
titleFont: lucidasans-bold-10
|
||||
118
styles/Results
Normal file
118
styles/Results
Normal file
|
|
@ -0,0 +1,118 @@
|
|||
toolbar: raised diagonal gradient bevel1
|
||||
toolbar.color: rgb:8/8/7
|
||||
toolbar.colorTo: grey20
|
||||
|
||||
toolbar.button: raised diagonal gradient bevel1
|
||||
toolbar.button.color: grey
|
||||
toolbar.button.colorTo: grey20
|
||||
toolbar.button.picColor: black
|
||||
toolbar.button.pressed: sunken diagonal interlaced gradient bevel1
|
||||
toolbar.button.pressed.color: rgb:4/4/38
|
||||
toolbar.button.pressed.colorTo: rgb:f/f/d
|
||||
|
||||
toolbar.label: flat interlaced diagonal gradient
|
||||
toolbar.label.color: grey20
|
||||
toolbar.label.colorTo: rgb:8/8/7
|
||||
toolbar.label.textColor: grey85
|
||||
|
||||
toolbar.windowLabel: flat interlaced diagonal gradient
|
||||
toolbar.windowLabel.color: grey20
|
||||
toolbar.windowLabel.colorTo: rgb:8/8/7
|
||||
toolbar.windowLabel.textColor: grey85
|
||||
|
||||
toolbar.clock: flat interlaced diagonal gradient
|
||||
toolbar.clock.color: grey20
|
||||
toolbar.clock.colorTo: rgb:8/8/7
|
||||
toolbar.clock.textColor: grey85
|
||||
|
||||
toolbar.justify: center
|
||||
toolbar.font: lucidasans-bold-10
|
||||
|
||||
menu.title: raised diagonal interlaced gradient bevel1
|
||||
menu.title.color: grey20
|
||||
menu.title.colorTo: rgb:8/8/7
|
||||
menu.title.textColor: grey85
|
||||
menu.title.font: lucidasans-bold-10
|
||||
menu.title.justify: center
|
||||
|
||||
menu.frame: raised diagonal gradient bevel1
|
||||
menu.frame.color: rgb:8/8/7
|
||||
menu.frame.colorTo: grey10
|
||||
menu.frame.textColor: white
|
||||
menu.frame.disableColor: rgb:4/4/38
|
||||
menu.frame.font: lucidasans-10
|
||||
menu.frame.justify: center
|
||||
|
||||
menu.bullet: triangle
|
||||
menu.bullet.position: right
|
||||
|
||||
menu.hilite: raised diagonal gradient bevel1
|
||||
menu.hilite.color: grey60
|
||||
menu.hilite.colorTo: white
|
||||
menu.hilite.textColor: grey20
|
||||
|
||||
window.title.focus: raised diagonal gradient bevel1
|
||||
window.title.focus.color: rgb:8/8/7
|
||||
window.title.focus.colorTo: grey20
|
||||
window.title.unfocus: raised diagonal gradient bevel1
|
||||
window.title.unfocus.color: rgb:6/6/54
|
||||
window.title.unfocus.colorTo: grey20
|
||||
|
||||
window.label.focus: interlaced sunken diagonal gradient bevel1
|
||||
window.label.focus.color: grey20
|
||||
window.label.focus.colorTo: grey
|
||||
window.label.focus.textColor: white
|
||||
window.label.unfocus: interlaced flat gradient
|
||||
window.label.unfocus.color: grey20
|
||||
window.label.unfocus.colorTo: rgb:6/6/54
|
||||
window.label.unfocus.textColor: grey
|
||||
|
||||
window.handle.focus: raised diagonal gradient bevel1
|
||||
window.handle.focus.color: rgb:8/8/7
|
||||
window.handle.focus.colorTo: grey20
|
||||
window.handle.unfocus: raised diagonal gradient bevel1
|
||||
window.handle.unfocus.color: rgb:6/6/54
|
||||
window.handle.unfocus.colorTo: grey20
|
||||
|
||||
window.grip.focus: raised diagonal gradient bevel1
|
||||
window.grip.focus.color: grey
|
||||
window.grip.focus.colorTo: grey20
|
||||
window.grip.unfocus: sunken diagonal gradient bevel1
|
||||
window.grip.unfocus.color: grey20
|
||||
window.grip.unfocus.colorTo: grey
|
||||
|
||||
|
||||
window.button.focus: raised diagonal gradient bevel1
|
||||
window.button.focus.color: grey
|
||||
window.button.focus.colorTo: grey20
|
||||
window.button.focus.picColor: black
|
||||
window.button.unfocus: sunken diagonal gradient bevel1
|
||||
window.button.unfocus.color: grey20
|
||||
window.button.unfocus.colorTo: grey
|
||||
window.button.unfocus.picColor: grey40
|
||||
window.button.pressed: flat diagonal interlaced gradient
|
||||
window.button.pressed.color: rgb:4/4/38
|
||||
window.button.pressed.colorTo: rgb:f/f/d
|
||||
|
||||
window.frame.focusColor: grey85
|
||||
window.frame.unfocusColor: rgb:6/6/54
|
||||
|
||||
window.font: lucidasans-bold-10
|
||||
window.justify: center
|
||||
|
||||
! misc...
|
||||
borderColor: rgb:2/2/1c
|
||||
|
||||
borderWidth: 1
|
||||
bevelWidth: 2
|
||||
handleWidth: 4
|
||||
|
||||
background: mod
|
||||
background.modX: 4
|
||||
background.modY: 4
|
||||
background.color: grey20
|
||||
background.colorTo: rgb:6/6/5c
|
||||
|
||||
! for the bbtools
|
||||
menuFont: lucidasans-10
|
||||
titleFont: lucidasans-bold-10
|
||||
92
styles/Shade
Normal file
92
styles/Shade
Normal file
|
|
@ -0,0 +1,92 @@
|
|||
toolbar: flat solid
|
||||
toolbar.color: rgb:6/6/6
|
||||
toolbar.button: flat solid
|
||||
toolbar.button.color: rgb:6/6/6
|
||||
toolbar.button.picColor: rgb:2/2/2
|
||||
toolbar.label: flat crossdiagonal gradient
|
||||
toolbar.label.color: rgb:8/8/7
|
||||
toolbar.label.colorTo: rgb:f/f/d
|
||||
toolbar.label.textColor: rgb:2/2/1c
|
||||
toolbar.windowLabel: flat crossdiagonal gradient
|
||||
toolbar.windowLabel.color: rgb:8/8/7
|
||||
toolbar.windowLabel.colorTo: rgb:f/f/d
|
||||
toolbar.windowLabel.textColor: rgb:2/2/1c
|
||||
toolbar.clock: flat crossdiagonal gradient
|
||||
toolbar.clock.color: rgb:8/8/7
|
||||
toolbar.clock.colorTo: rgb:f/f/d
|
||||
toolbar.clock.textColor: rgb:2/2/1c
|
||||
toolbar.justify: right
|
||||
toolbar.font: lucidasans-10
|
||||
|
||||
menu.title: flat crossdiagonal gradient
|
||||
menu.title.color: rgb:8/8/7
|
||||
menu.title.colorTo: rgb:f/f/d
|
||||
menu.title.textColor: rgb:2/2/1c
|
||||
menu.title.font: lucidasans-10
|
||||
menu.title.justify: right
|
||||
|
||||
menu.frame: flat solid
|
||||
menu.frame.color: rgb:6/6/6
|
||||
menu.frame.textColor: grey85
|
||||
menu.frame.disableColor: rgb:4/4/4
|
||||
menu.frame.font: lucidasans-10
|
||||
menu.frame.justify: center
|
||||
|
||||
menu.bullet.position: right
|
||||
menu.bullet: triangle
|
||||
|
||||
menu.hilite: flat solid
|
||||
menu.hilite.color: rgb:4/4/4
|
||||
menu.hilite.textColor: white
|
||||
|
||||
window.title.focus: flat solid
|
||||
window.title.focus.color: rgb:6/6/6
|
||||
window.title.unfocus: flat solid
|
||||
window.title.unfocus.color: rgb:4/4/4
|
||||
|
||||
window.label.focus: flat crossdiagonal gradient
|
||||
window.label.focus.color: rgb:8/8/7
|
||||
window.label.focus.colorTo: rgb:f/f/d
|
||||
window.label.focus.textColor: rgb:2/2/1c
|
||||
window.label.unfocus: flat solid
|
||||
window.label.unfocus.color: rgb:4/4/4
|
||||
window.label.unfocus.textColor: rgb:2/2/2
|
||||
|
||||
window.button.focus: flat solid
|
||||
window.button.focus.color: rgb:6/6/6
|
||||
window.button.focus.picColor: rgb:2/2/2
|
||||
window.button.unfocus: flat solid
|
||||
window.button.unfocus.color: rgb:4/4/4
|
||||
window.button.unfocus.picColor: rgb:2/2/2
|
||||
|
||||
window.handle.focus: flat crossdiagonal gradient
|
||||
window.handle.focus.color: rgb:8/8/7
|
||||
window.handle.focus.colorTo: rgb:f/f/d
|
||||
window.handle.unfocus: flat solid
|
||||
window.handle.unfocus.color: rgb:4/4/4
|
||||
|
||||
window.grip.focus: flat solid
|
||||
window.grip.focus.color: rgb:8/8/8
|
||||
window.grip.unfocus: flat solid
|
||||
window.grip.unfocus.color: rgb:4/4/4
|
||||
|
||||
window.frame.focusColor: rgb:f/f/d
|
||||
window.frame.unfocusColor: rgb:6/6/6
|
||||
|
||||
window.font: lucidasans-10
|
||||
window.justify: right
|
||||
|
||||
*button.pressed: flat solid
|
||||
*button.pressed.color: rgb:a/a/8c
|
||||
|
||||
borderColor: rgb:2/2/2
|
||||
|
||||
bevelWidth: 2
|
||||
borderWidth: 2
|
||||
handleWidth: 3
|
||||
|
||||
*textColor: grey20
|
||||
*Font: lucidasans-10
|
||||
|
||||
background: flat
|
||||
background.color: rgb:4/4/4
|
||||
105
styles/Twice
Normal file
105
styles/Twice
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
toolbar: flat diagonal gradient
|
||||
toolbar.color: rgb:c/6/6
|
||||
toolbar.colorTo: rgb:8/4/4
|
||||
toolbar.button: flat diagonal gradient
|
||||
toolbar.button.color: rgb:6/3/3
|
||||
toolbar.button.colorTo: rgb:a/5/5
|
||||
toolbar.button.picColor: rgb:4/2/2
|
||||
toolbar.button.pressed: flat crossdiagonal gradient
|
||||
toolbar.button.pressed.color: grey40
|
||||
toolbar.button.pressed.colorTo: grey20
|
||||
toolbar.label: flat crossdiagonal gradient
|
||||
toolbar.label.color: grey40
|
||||
toolbar.label.colorTo: grey20
|
||||
toolbar.label.textColor: grey85
|
||||
toolbar.windowLabel: flat crossdiagonal gradient
|
||||
toolbar.windowLabel.color: grey40
|
||||
toolbar.windowLabel.colorTo: grey20
|
||||
toolbar.windowLabel.textColor: grey85
|
||||
toolbar.clock: flat crossdiagonal gradient
|
||||
toolbar.clock.color: grey40
|
||||
toolbar.clock.colorTo: grey20
|
||||
toolbar.clock.textColor: grey85
|
||||
toolbar.justify: right
|
||||
toolbar.font: lucidasans-10
|
||||
|
||||
menu.title: flat crossdiagonal gradient
|
||||
menu.title.color: rgb:c/6/6
|
||||
menu.title.colorTo: rgb:6/3/3
|
||||
menu.title.textColor: white
|
||||
menu.title.font: lucidasans-10
|
||||
menu.title.justify: right
|
||||
|
||||
menu.frame: flat crossdiagonal gradient
|
||||
menu.frame.color: grey40
|
||||
menu.frame.colorTo: grey20
|
||||
menu.frame.textColor: grey85
|
||||
menu.frame.disableColor: rgb:4/2/2
|
||||
menu.frame.font: lucidasans-10
|
||||
menu.frame.justify: center
|
||||
|
||||
menu.bullet.position: right
|
||||
menu.bullet: triangle
|
||||
|
||||
menu.hilite: flat crossdiagonal gradient
|
||||
menu.hilite.color: rgb:c/6/6
|
||||
menu.hilite.colorTo: rgb:6/3/3
|
||||
menu.hilite.textColor: white
|
||||
|
||||
window.title.focus: flat diagonal gradient
|
||||
window.title.focus.color: rgb:c/6/6
|
||||
window.title.focus.colorTo: rgb:8/4/4
|
||||
window.title.unfocus: flat solid
|
||||
window.title.unfocus.color: grey30
|
||||
|
||||
window.label.focus: flat crossdiagonal gradient
|
||||
window.label.focus.color: grey40
|
||||
window.label.focus.colorTo: grey20
|
||||
window.label.focus.textColor: white
|
||||
window.label.unfocus: flat crossdiagonal gradient
|
||||
window.label.unfocus.color: grey30
|
||||
window.label.unfocus.colorTo: grey20
|
||||
window.label.unfocus.textColor: grey60
|
||||
|
||||
window.button.focus: flat diagonal gradient
|
||||
window.button.focus.color: rgb:8/4/4
|
||||
window.button.focus.colorTo: rgb:a/5/5
|
||||
window.button.focus.picColor: rgb:4/2/2
|
||||
window.button.unfocus: flat solid
|
||||
window.button.unfocus.color: grey30
|
||||
window.button.unfocus.picColor: grey20
|
||||
window.button.pressed: flat crossdiagonal gradient
|
||||
window.button.pressed.color: grey40
|
||||
window.button.pressed.colorTo: grey20
|
||||
|
||||
window.handle.focus: flat crossdiagonal gradient
|
||||
window.handle.focus.color: rgb:c/6/6
|
||||
window.handle.focus.colorTo: rgb:6/3/3
|
||||
window.handle.unfocus: flat solid
|
||||
window.handle.unfocus.color: grey30
|
||||
|
||||
window.grip.focus: flat crossdiagonal gradient
|
||||
window.grip.focus.color: grey40
|
||||
window.grip.focus.colorTo: grey20
|
||||
window.grip.unfocus: flat crossdiagonal gradient
|
||||
window.grip.unfocus.color: grey30
|
||||
window.grip.unfocus.colorTo: grey20
|
||||
|
||||
window.frame.focusColor: rgb:c/6/6
|
||||
window.frame.unfocusColor: grey30
|
||||
|
||||
window.font: lucidasans-10
|
||||
window.justify: right
|
||||
|
||||
borderColor: grey10
|
||||
|
||||
bevelWidth: 1
|
||||
borderWidth: 2
|
||||
handleWidth: 4
|
||||
|
||||
*textColor: grey85
|
||||
*Font: lucidasans-10
|
||||
|
||||
background: flat
|
||||
background.color: grey20
|
||||
|
||||
3
styles/arch/Makemodule.am
Normal file
3
styles/arch/Makemodule.am
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
arch_styledir = $(pkgdatadir)/styles/arch
|
||||
|
||||
dist_arch_style_DATA = data/styles/arch/theme.cfg
|
||||
33
styles/arch/pixmaps/Makemodule.am
Normal file
33
styles/arch/pixmaps/Makemodule.am
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
arch_pixmaps_styledir = $(pkgdatadir)/styles/arch/pixmaps
|
||||
|
||||
dist_arch_pixmaps_style_DATA = \
|
||||
data/styles/arch/pixmaps/bullet.xpm \
|
||||
data/styles/arch/pixmaps/closefcs.xpm \
|
||||
data/styles/arch/pixmaps/closepr.xpm \
|
||||
data/styles/arch/pixmaps/closeufcs.xpm \
|
||||
data/styles/arch/pixmaps/frame.xpm \
|
||||
data/styles/arch/pixmaps/gripfcs.xpm \
|
||||
data/styles/arch/pixmaps/maxfcs.xpm \
|
||||
data/styles/arch/pixmaps/maxpr.xpm \
|
||||
data/styles/arch/pixmaps/maxufcs.xpm \
|
||||
data/styles/arch/pixmaps/menuiconfcs.xpm \
|
||||
data/styles/arch/pixmaps/menuiconpr.xpm \
|
||||
data/styles/arch/pixmaps/menuiconufcs.xpm \
|
||||
data/styles/arch/pixmaps/minfcs.xpm \
|
||||
data/styles/arch/pixmaps/minpr.xpm \
|
||||
data/styles/arch/pixmaps/minufcs.xpm \
|
||||
data/styles/arch/pixmaps/selected.xpm \
|
||||
data/styles/arch/pixmaps/shadefcs.xpm \
|
||||
data/styles/arch/pixmaps/shadepr.xpm \
|
||||
data/styles/arch/pixmaps/shadeufcs.xpm \
|
||||
data/styles/arch/pixmaps/stickfcs.xpm \
|
||||
data/styles/arch/pixmaps/stickpr.xpm \
|
||||
data/styles/arch/pixmaps/stickufcs.xpm \
|
||||
data/styles/arch/pixmaps/stuckfcs.xpm \
|
||||
data/styles/arch/pixmaps/stuckufcs.xpm \
|
||||
data/styles/arch/pixmaps/tbarfcs.xpm \
|
||||
data/styles/arch/pixmaps/tbarufcs.xpm \
|
||||
data/styles/arch/pixmaps/unselected.xpm \
|
||||
data/styles/arch/pixmaps/unshadefcs.xpm \
|
||||
data/styles/arch/pixmaps/unshadepr.xpm \
|
||||
data/styles/arch/pixmaps/unshadeufcs.xpm
|
||||
26
styles/arch/pixmaps/bullet.xpm
Normal file
26
styles/arch/pixmaps/bullet.xpm
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/* XPM */
|
||||
static char *bullet[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 4 1",
|
||||
" c black",
|
||||
". c #A0A0A0",
|
||||
"X c #E7E7E7",
|
||||
"o c None",
|
||||
/* pixels */
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"ooooooooXooooooo",
|
||||
"ooooooooXXoooooo",
|
||||
"oooooXXXXXXooooo",
|
||||
"oooooXXXXXXXoooo",
|
||||
"oooooXXXXXX.oooo",
|
||||
"ooooo...XX.ooooo",
|
||||
"ooooooooX.oooooo",
|
||||
"oooooooo.ooooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo"
|
||||
};
|
||||
114
styles/arch/pixmaps/closefcs.xpm
Normal file
114
styles/arch/pixmaps/closefcs.xpm
Normal file
|
|
@ -0,0 +1,114 @@
|
|||
/* XPM */
|
||||
static char * closefcs_xpm[] = {
|
||||
"19 19 92 2",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F4F4F4",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #F2F2F2",
|
||||
"v c #EDEDED",
|
||||
"w c #EEEEEE",
|
||||
"x c #AEAEAE",
|
||||
"y c #000000",
|
||||
"z c #E1E1E1",
|
||||
"A c #E8E8E8",
|
||||
"B c #D8D8D8",
|
||||
"C c #D7D7D7",
|
||||
"D c #F0F0F0",
|
||||
"E c #F8F8F8",
|
||||
"F c #F1F1F1",
|
||||
"G c #ABABAB",
|
||||
"H c #D4D4D4",
|
||||
"I c #B1B1B1",
|
||||
"J c #C4C4C4",
|
||||
"K c #F3F3F3",
|
||||
"L c #EFEFEF",
|
||||
"M c #BFBFBF",
|
||||
"N c #A3A3A3",
|
||||
"O c #9E9E9E",
|
||||
"P c #E6E6E6",
|
||||
"Q c #A2A2A2",
|
||||
"R c #E9E9E9",
|
||||
"S c #FBFBFB",
|
||||
"T c #EBEBEB",
|
||||
"U c #B4B4B4",
|
||||
"V c #A4A4A4",
|
||||
"W c #EFF1F1",
|
||||
"X c #BDBDBD",
|
||||
"Y c #CECECE",
|
||||
"Z c #C1C1C1",
|
||||
"` c #C3C0C3",
|
||||
" ",
|
||||
". . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + @ # $ $ $ # % & + + + + + ",
|
||||
"* * * * = & - ; > > , ' @ ) ! * * * * ",
|
||||
"~ ~ ~ = ' { ] ^ / ( _ : < ) [ ~ ~ ~ ",
|
||||
"} } | 1 2 3 4 , 5 6 7 % 8 9 0 ) a } } ",
|
||||
"b a - c d > e f f f g h e i j # [ k b ",
|
||||
"~ i l m n h g g o g f g h h p q r k b ",
|
||||
"[ ; s t h u v w u o u w w f h ~ # a ~ ",
|
||||
"n x _ g u p y y z p z y y A o h [ B ~ ",
|
||||
"0 ( | o v C y y y ' y y y ! D E F = z ",
|
||||
"{ G o o 7 H 9 y y 2 y y I C F E E A z ",
|
||||
"j J u K L k M N O y O N > z o e E u p ",
|
||||
"9 = F o K P ' y y Q y y # R E S 6 f R ",
|
||||
"I F F K D k y y y Q y y y ~ f e e 6 T ",
|
||||
"U D u K 7 C y y V x V y y ! F e e 6 W ",
|
||||
"{ D u f L = X I ; Y ; j q [ u e 6 e F ",
|
||||
"Z K f h h 7 [ = b 7 b = [ 5 g 6 6 e u ",
|
||||
"` K g 6 S 6 o f 6 S 6 f o h e 6 e 6 L "};
|
||||
107
styles/arch/pixmaps/closepr.xpm
Normal file
107
styles/arch/pixmaps/closepr.xpm
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
/* XPM */
|
||||
static char * closepr_xpm[] = {
|
||||
"19 19 85 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F8F8F8",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #F3F3F3",
|
||||
"v c #F4F4F4",
|
||||
"w c #AEAEAE",
|
||||
"x c #F1F1F1",
|
||||
"y c #E9E9E9",
|
||||
"z c #F0F0F0",
|
||||
"A c #F2F2F2",
|
||||
"B c #D8D8D8",
|
||||
"C c #000000",
|
||||
"D c #E8E8E8",
|
||||
"E c #E1E1E1",
|
||||
"F c #ABABAB",
|
||||
"G c #C4C4C4",
|
||||
"H c #EFEFEF",
|
||||
"I c #D7D7D7",
|
||||
"J c #E4E4E4",
|
||||
"K c #FBFBFB",
|
||||
"L c #B1B1B1",
|
||||
"M c #EBEBEB",
|
||||
"N c #B4B4B4",
|
||||
"O c #EEEEEE",
|
||||
"P c #EFF1F1",
|
||||
"Q c #C1C1C1",
|
||||
"R c #C3C0C3",
|
||||
"S c #FCFCFC",
|
||||
"T c #FDFDFD",
|
||||
" ",
|
||||
"...................",
|
||||
"++++++@#$$$#%&+++++",
|
||||
"****=&-;>>,'@)!****",
|
||||
"~~~='{ ]^/(_:<)[~~~",
|
||||
"}}|1234,567%890)a}}",
|
||||
"ba-cd>efffgheij#[kb",
|
||||
"~ilmnoggfggghopqrkb",
|
||||
"[;sthfuvfgfvvoh~#a~",
|
||||
"nw_hfx5yzAz57Aho[B~",
|
||||
"0(|vu5CC}D}CC7gox=E",
|
||||
"{FvvuDCCC[CCC7oooDE",
|
||||
"jGAvuH}CCICCJxoKoAp",
|
||||
"9=xvfAD[)CI[yfeK6fy",
|
||||
"Lxxvvz}CCICCJA6Ke6M",
|
||||
"NzAuu7CCCaCCCOoee6P",
|
||||
"{zAffOCCb5bCCzoe6ex",
|
||||
"QufoegzHvhvHzv6e6eA",
|
||||
"Rug6KSeKSTSKeee6e6H"};
|
||||
105
styles/arch/pixmaps/closeufcs.xpm
Normal file
105
styles/arch/pixmaps/closeufcs.xpm
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
/* XPM */
|
||||
static char * closeufcs_xpm[] = {
|
||||
"19 19 83 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F8F8F8",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #AEAEAE",
|
||||
"v c #FBFBFB",
|
||||
"w c #D8D8D8",
|
||||
"x c #FDFDFD",
|
||||
"y c #F1F1F1",
|
||||
"z c #E1E1E1",
|
||||
"A c #ABABAB",
|
||||
"B c #F4F4F4",
|
||||
"C c #FEFEFE",
|
||||
"D c #FCFCFC",
|
||||
"E c #E8E8E8",
|
||||
"F c #C4C4C4",
|
||||
"G c #F2F2F2",
|
||||
"H c #FFFFFF",
|
||||
"I c #E9E9E9",
|
||||
"J c #B1B1B1",
|
||||
"K c #EBEBEB",
|
||||
"L c #B4B4B4",
|
||||
"M c #F0F0F0",
|
||||
"N c #EFF1F1",
|
||||
"O c #C1C1C1",
|
||||
"P c #F3F3F3",
|
||||
"Q c #C3C0C3",
|
||||
"R c #EFEFEF",
|
||||
" ",
|
||||
"...................",
|
||||
"++++++@#$$$#%&+++++",
|
||||
"****=&-;>>,'@)!****",
|
||||
"~~~='{ ]^/(_:<)[~~~",
|
||||
"}}|1234,567%890)a}}",
|
||||
"ba-cd>efffgheij#[kb",
|
||||
"~ilmnohhfgghoopqrkb",
|
||||
"[;stohhooooooeo~#a~",
|
||||
"nu_hh6o6veveee6o[w~",
|
||||
"0(|fho6vxxxxvee6y=z",
|
||||
"{ABfhovxCCCCxDD6oEz",
|
||||
"jFGBgexCHHHCCDvvoGp",
|
||||
"9=yBhexCCHHCCxDv6fI",
|
||||
"JyyBhvxCHHHCCxDve6K",
|
||||
"LMGBhDCCHHHHHCDve6N",
|
||||
"{MGg6DCCHHHHHCDv6ey",
|
||||
"OPfoDCCHHHHHCDve6eG",
|
||||
"QPg6DCCHHHHHCDv6e6R"};
|
||||
28
styles/arch/pixmaps/frame.xpm
Normal file
28
styles/arch/pixmaps/frame.xpm
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
/* XPM */
|
||||
static char *frame[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"21 21 1 1",
|
||||
" c #23155F",
|
||||
/* pixels */
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" ",
|
||||
" "
|
||||
};
|
||||
296
styles/arch/pixmaps/gripfcs.xpm
Normal file
296
styles/arch/pixmaps/gripfcs.xpm
Normal file
|
|
@ -0,0 +1,296 @@
|
|||
/* XPM */
|
||||
static char * gripfcs_xpm[] = {
|
||||
"19 19 274 2",
|
||||
" c #A4A4A5",
|
||||
". c #A1A2A1",
|
||||
"+ c #9F9F9F",
|
||||
"@ c #9D9D9D",
|
||||
"# c #9B9B9B",
|
||||
"$ c #9A9A99",
|
||||
"% c #999999",
|
||||
"& c #979898",
|
||||
"* c #979897",
|
||||
"= c #989897",
|
||||
"- c #989898",
|
||||
"; c #989998",
|
||||
"> c #9A9999",
|
||||
", c #9A9A9B",
|
||||
"' c #9C9D9D",
|
||||
") c #9E9F9E",
|
||||
"! c #A1A1A1",
|
||||
"~ c #A4A4A3",
|
||||
"{ c #A6A7A7",
|
||||
"] c #9D9D9E",
|
||||
"^ c #9B9B9A",
|
||||
"/ c #969695",
|
||||
"( c #949494",
|
||||
"_ c #939392",
|
||||
": c #919191",
|
||||
"< c #919091",
|
||||
"[ c #8F9090",
|
||||
"} c #909090",
|
||||
"| c #929292",
|
||||
"1 c #959595",
|
||||
"2 c #999A9A",
|
||||
"3 c #9C9C9D",
|
||||
"4 c #A0A0A0",
|
||||
"5 c #979797",
|
||||
"6 c #939493",
|
||||
"7 c #919291",
|
||||
"8 c #8F8E8F",
|
||||
"9 c #8C8D8D",
|
||||
"0 c #8B8B8B",
|
||||
"a c #8A898A",
|
||||
"b c #898989",
|
||||
"c c #888988",
|
||||
"d c #898889",
|
||||
"e c #8A8A89",
|
||||
"f c #8A8A8B",
|
||||
"g c #8C8D8C",
|
||||
"h c #8E8E8E",
|
||||
"i c #909091",
|
||||
"j c #939393",
|
||||
"k c #969596",
|
||||
"l c #919090",
|
||||
"m c #8D8D8D",
|
||||
"n c #8A8B8A",
|
||||
"o c #878787",
|
||||
"p c #868586",
|
||||
"q c #838384",
|
||||
"r c #838383",
|
||||
"s c #828181",
|
||||
"t c #818181",
|
||||
"u c #818182",
|
||||
"v c #828282",
|
||||
"w c #848585",
|
||||
"x c #8C8C8C",
|
||||
"y c #8F8F90",
|
||||
"z c #89898A",
|
||||
"A c #868686",
|
||||
"B c #808080",
|
||||
"C c #7F7E7E",
|
||||
"D c #7C7D7C",
|
||||
"E c #7B7B7B",
|
||||
"F c #7A7A7A",
|
||||
"G c #7A797A",
|
||||
"H c #7B7B7A",
|
||||
"I c #7C7C7C",
|
||||
"J c #7D7E7E",
|
||||
"K c #828283",
|
||||
"L c #858586",
|
||||
"M c #80807F",
|
||||
"N c #797A79",
|
||||
"O c #777777",
|
||||
"P c #767575",
|
||||
"Q c #747374",
|
||||
"R c #737373",
|
||||
"S c #727272",
|
||||
"T c #727273",
|
||||
"U c #757575",
|
||||
"V c #767776",
|
||||
"W c #797878",
|
||||
"X c #7C7B7C",
|
||||
"Y c #7E7F7E",
|
||||
"Z c #828182",
|
||||
"` c #858686",
|
||||
" . c #7D7C7C",
|
||||
".. c #787878",
|
||||
"+. c #767675",
|
||||
"@. c #707070",
|
||||
"#. c #6E6E6E",
|
||||
"$. c #6C6D6D",
|
||||
"%. c #6B6B6B",
|
||||
"&. c #6A6A6B",
|
||||
"*. c #6C6C6B",
|
||||
"=. c #6E6D6D",
|
||||
"-. c #6F706F",
|
||||
";. c #727172",
|
||||
">. c #747575",
|
||||
",. c #787877",
|
||||
"'. c #7C7B7B",
|
||||
"). c #807F7F",
|
||||
"!. c #767676",
|
||||
"~. c #6F6F6F",
|
||||
"{. c #696969",
|
||||
"]. c #676666",
|
||||
"^. c #656565",
|
||||
"/. c #646464",
|
||||
"(. c #636363",
|
||||
"_. c #646363",
|
||||
":. c #636464",
|
||||
"<. c #656465",
|
||||
"[. c #666666",
|
||||
"}. c #696868",
|
||||
"|. c #717171",
|
||||
"1. c #797979",
|
||||
"2. c #6C6C6C",
|
||||
"3. c #686868",
|
||||
"4. c #646565",
|
||||
"5. c #626262",
|
||||
"6. c #5F605F",
|
||||
"7. c #5D5D5E",
|
||||
"8. c #5C5C5C",
|
||||
"9. c #5B5C5C",
|
||||
"0. c #5C5B5C",
|
||||
"a. c #5E5D5D",
|
||||
"b. c #5F5F5F",
|
||||
"c. c #616161",
|
||||
"d. c #676767",
|
||||
"e. c #747373",
|
||||
"f. c #6A6A6A",
|
||||
"g. c #656666",
|
||||
"h. c #616261",
|
||||
"i. c #5E5E5E",
|
||||
"j. c #5B5B5B",
|
||||
"k. c #585858",
|
||||
"l. c #565756",
|
||||
"m. c #555555",
|
||||
"n. c #545454",
|
||||
"o. c #565656",
|
||||
"p. c #575857",
|
||||
"q. c #5A5A5A",
|
||||
"r. c #5D5D5D",
|
||||
"s. c #606061",
|
||||
"t. c #646564",
|
||||
"u. c #686969",
|
||||
"v. c #606060",
|
||||
"w. c #575858",
|
||||
"x. c #515252",
|
||||
"y. c #4F4F4F",
|
||||
"z. c #4D4D4E",
|
||||
"A. c #4D4D4D",
|
||||
"B. c #4E4F4F",
|
||||
"C. c #505050",
|
||||
"D. c #535354",
|
||||
"E. c #565657",
|
||||
"F. c #5A5A5B",
|
||||
"G. c #5E5E5F",
|
||||
"H. c #686867",
|
||||
"I. c #5A5A59",
|
||||
"J. c #515151",
|
||||
"K. c #4A4A4B",
|
||||
"L. c #484847",
|
||||
"M. c #464647",
|
||||
"N. c #464546",
|
||||
"O. c #454545",
|
||||
"P. c #474747",
|
||||
"Q. c #4A4949",
|
||||
"R. c #4C4C4C",
|
||||
"S. c #585958",
|
||||
"T. c #636262",
|
||||
"U. c #5A5959",
|
||||
"V. c #4A4A4A",
|
||||
"W. c #474647",
|
||||
"X. c #434444",
|
||||
"Y. c #414041",
|
||||
"Z. c #3F3F3E",
|
||||
"`. c #3E3E3E",
|
||||
" + c #404140",
|
||||
".+ c #424243",
|
||||
"++ c #494A49",
|
||||
"@+ c #4E4D4E",
|
||||
"#+ c #535353",
|
||||
"$+ c #585757",
|
||||
"%+ c #545455",
|
||||
"&+ c #4F4E4E",
|
||||
"*+ c #454445",
|
||||
"=+ c #3D3D3D",
|
||||
"-+ c #3A393A",
|
||||
";+ c #383838",
|
||||
">+ c #373636",
|
||||
",+ c #373637",
|
||||
"'+ c #373837",
|
||||
")+ c #393939",
|
||||
"!+ c #3C3C3C",
|
||||
"~+ c #3F3F3F",
|
||||
"{+ c #444344",
|
||||
"]+ c #484849",
|
||||
"^+ c #4E4D4D",
|
||||
"/+ c #595958",
|
||||
"(+ c #4A4A49",
|
||||
"_+ c #444444",
|
||||
":+ c #3A3B3A",
|
||||
"<+ c #363636",
|
||||
"[+ c #333233",
|
||||
"}+ c #303031",
|
||||
"|+ c #2F2F2F",
|
||||
"1+ c #30302F",
|
||||
"2+ c #323232",
|
||||
"3+ c #353636",
|
||||
"4+ c #434343",
|
||||
"5+ c #484848",
|
||||
"6+ c #4E4E4E",
|
||||
"7+ c #4B4B4B",
|
||||
"8+ c #464545",
|
||||
"9+ c #3A3A39",
|
||||
"0+ c #343434",
|
||||
"a+ c #303030",
|
||||
"b+ c #2C2C2C",
|
||||
"c+ c #292929",
|
||||
"d+ c #272827",
|
||||
"e+ c #282727",
|
||||
"f+ c #282928",
|
||||
"g+ c #2B2B2B",
|
||||
"h+ c #333333",
|
||||
"i+ c #3E3D3E",
|
||||
"j+ c #424141",
|
||||
"k+ c #3B3B3B",
|
||||
"l+ c #353435",
|
||||
"m+ c #292A2A",
|
||||
"n+ c #252626",
|
||||
"o+ c #222222",
|
||||
"p+ c #202020",
|
||||
"q+ c #222122",
|
||||
"r+ c #242424",
|
||||
"s+ c #2E2E2D",
|
||||
"t+ c #343333",
|
||||
"u+ c #393A39",
|
||||
"v+ c #40403F",
|
||||
"w+ c #464646",
|
||||
"x+ c #4D4C4D",
|
||||
"y+ c #373737",
|
||||
"z+ c #313031",
|
||||
"A+ c #2B2A2B",
|
||||
"B+ c #242525",
|
||||
"C+ c #1B1C1C",
|
||||
"D+ c #191918",
|
||||
"E+ c #191819",
|
||||
"F+ c #1A1A1B",
|
||||
"G+ c #1F1E1E",
|
||||
"H+ c #232323",
|
||||
"I+ c #353635",
|
||||
"J+ c #3C3D3C",
|
||||
"K+ c #424242",
|
||||
"L+ c #343534",
|
||||
"M+ c #2E2D2E",
|
||||
"N+ c #262626",
|
||||
"O+ c #1A1A1A",
|
||||
"P+ c #151515",
|
||||
"Q+ c #121112",
|
||||
"R+ c #111111",
|
||||
"S+ c #141414",
|
||||
"T+ c #181819",
|
||||
"U+ c #1E1F1E",
|
||||
"V+ c #252524",
|
||||
"W+ c #2C2C2B",
|
||||
"X+ c #39393A",
|
||||
"Y+ c #414140",
|
||||
" . + @ # $ % & * = - ; > , ' ) ! ~ { ",
|
||||
"] ^ - / ( _ : < [ } } : | ( 1 & 2 3 4 ",
|
||||
"5 6 7 8 9 0 a b c d b e f g h i j k % ",
|
||||
"l m n o p q r s t t u v q w o b x y _ ",
|
||||
"z A r B C D E F F G F H I J B K L b x ",
|
||||
"r M I N O P Q R S S T R U V W X Y Z ` ",
|
||||
" ...+.T @.#.$.%.%.&.%.*.=.-.;.>.,.'.).",
|
||||
"!.S ~.*.{.].^./.(._.:.<.[.}.%.#.|.U 1.",
|
||||
"@.2.3.4.5.6.7.8.9.0.8.a.b.c./.d.%.~.e.",
|
||||
"f.g.h.i.j.k.l.m.n.n.m.o.p.q.r.s.t.u.=.",
|
||||
"/.v.j.w.n.x.y.z.A.A.A.B.C.D.E.F.G.(.H.",
|
||||
"b.I.m.J.A.K.L.M.N.O.N.P.Q.R.C.n.S.7.T.",
|
||||
"U.n.y.V.W.X.Y.Z.`.`.`. +.+N.++@+#+$+7.",
|
||||
"%+&+Q.*+ +=+-+;+>+,+'+)+!+~+{+]+^+#+/+",
|
||||
"y.(+_+~+:+<+[+}+|+|+1+2+3+)+=+4+5+6+n.",
|
||||
"7+8+~+9+0+a+b+c+d+e+f+g+|+h+;+i+X.V.C.",
|
||||
"5+j+k+l+|+m+n+o+p+p+q+r+c+s+t+u+v+w+x+",
|
||||
"O.`.y+z+A+B+p+C+D+E+F+G+H+c+|+I+J+4+V.",
|
||||
"K+k+L+M+N+p+O+P+Q+R+S+T+U+V+W+[+X+Y+5+"};
|
||||
115
styles/arch/pixmaps/maxfcs.xpm
Normal file
115
styles/arch/pixmaps/maxfcs.xpm
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
/* XPM */
|
||||
static char * maxfcs_xpm[] = {
|
||||
"19 19 93 2",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F8F8F8",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #AEAEAE",
|
||||
"v c #FBFBFB",
|
||||
"w c #D8D8D8",
|
||||
"x c #000000",
|
||||
"y c #F1F1F1",
|
||||
"z c #E1E1E1",
|
||||
"A c #ABABAB",
|
||||
"B c #F4F4F4",
|
||||
"C c #F0F0F0",
|
||||
"D c #FCFCFC",
|
||||
"E c #E8E8E8",
|
||||
"F c #C4C4C4",
|
||||
"G c #F2F2F2",
|
||||
"H c #EFEFEF",
|
||||
"I c #EDEDED",
|
||||
"J c #797979",
|
||||
"K c #8B8B8B",
|
||||
"L c #E9E9E9",
|
||||
"M c #B1B1B1",
|
||||
"N c #F3F3F3",
|
||||
"O c #808080",
|
||||
"P c #7A7A7A",
|
||||
"Q c #EBEBEB",
|
||||
"R c #B4B4B4",
|
||||
"S c #A4A4A4",
|
||||
"T c #AAAAAA",
|
||||
"U c #9D9D9D",
|
||||
"V c #D4D4D4",
|
||||
"W c #EFF1F1",
|
||||
"X c #C1C1C1",
|
||||
"Y c #DEDEDE",
|
||||
"Z c #E6E6E6",
|
||||
"` c #C3C0C3",
|
||||
" . c #FEFEFE",
|
||||
" ",
|
||||
". . . . . . . . . . . . . . . . . . . ",
|
||||
"+ + + + + + @ # $ $ $ # % & + + + + + ",
|
||||
"* * * * = & - ; > > , ' @ ) ! * * * * ",
|
||||
"~ ~ ~ = ' { ] ^ / ( _ : < ) [ ~ ~ ~ ",
|
||||
"} } | 1 2 3 4 , 5 6 7 % 8 9 0 ) a } } ",
|
||||
"b a - c d > e f f f g h e i j # [ k b ",
|
||||
"~ i l m n o h h f g g h o o p q r k b ",
|
||||
"[ ; s t o h h o o o o o o e o ~ # a ~ ",
|
||||
"n u _ h h 6 o 6 v 6 v e e e 6 o [ w ~ ",
|
||||
"0 ( | f h o 6 o h x h e v e e 6 y = z ",
|
||||
"{ A B f h o h C x x x y 6 D D 6 o E z ",
|
||||
"j F G B g g H x x x x x C o v v o G p ",
|
||||
"9 = y B B I x x 3 J K x x C 6 v 6 f L ",
|
||||
"M y y N H a x 4 O P O 4 x * B e e 6 Q ",
|
||||
"R C G G 5 & u ( S T S U 9 V H 6 e 6 W ",
|
||||
"{ C G B I w > X V Y V ; X = C 6 6 e y ",
|
||||
"X N f h g Q z Z y h y Z z L f 6 6 e G ",
|
||||
"` N g 6 e 6 h e D .D e h h 6 6 e 6 H "};
|
||||
108
styles/arch/pixmaps/maxpr.xpm
Normal file
108
styles/arch/pixmaps/maxpr.xpm
Normal file
|
|
@ -0,0 +1,108 @@
|
|||
/* XPM */
|
||||
static char * maxpr_xpm[] = {
|
||||
"19 19 86 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F8F8F8",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #AEAEAE",
|
||||
"v c #FBFBFB",
|
||||
"w c #D8D8D8",
|
||||
"x c #FCFCFC",
|
||||
"y c #F1F1F1",
|
||||
"z c #E1E1E1",
|
||||
"A c #ABABAB",
|
||||
"B c #F4F4F4",
|
||||
"C c #000000",
|
||||
"D c #E8E8E8",
|
||||
"E c #C4C4C4",
|
||||
"F c #F2F2F2",
|
||||
"G c #F0F0F0",
|
||||
"H c #E9E9E9",
|
||||
"I c #B1B1B1",
|
||||
"J c #F3F3F3",
|
||||
"K c #EBEBEB",
|
||||
"L c #B4B4B4",
|
||||
"M c #EEEEEE",
|
||||
"N c #DEDEDE",
|
||||
"O c #EFF1F1",
|
||||
"P c #C1C1C1",
|
||||
"Q c #C3C0C3",
|
||||
"R c #FDFDFD",
|
||||
"S c #FEFEFE",
|
||||
"T c #FFFFFF",
|
||||
"U c #EFEFEF",
|
||||
" ",
|
||||
"...................",
|
||||
"++++++@#$$$#%&+++++",
|
||||
"****=&-;>>,'@)!****",
|
||||
"~~~='{ ]^/(_:<)[~~~",
|
||||
"}}|1234,567%890)a}}",
|
||||
"ba-cd>efffgheij#[kb",
|
||||
"~ilmnohhfgghoopqrkb",
|
||||
"[;stohhooooooeo~#a~",
|
||||
"nu_hh6o6veveee6o[w~",
|
||||
"0(|fho6evevxvee6y=z",
|
||||
"{ABfhoe6fCfexxx6oDz",
|
||||
"jEFBg6oyCCCy6vvvoFp",
|
||||
"9=yBggGCCCCCy6vv6fH",
|
||||
"IyyBByCCi+iCCJ6ve6K",
|
||||
"LGFJJMCNz}z*CGoee6O",
|
||||
"{GFffGH5yByK5Foe6ey",
|
||||
"PJfoeoBhvxvhBg6e6eF",
|
||||
"QJg6vRxRSTSRxve6e6U"};
|
||||
105
styles/arch/pixmaps/maxufcs.xpm
Normal file
105
styles/arch/pixmaps/maxufcs.xpm
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
/* XPM */
|
||||
static char * maxufcs_xpm[] = {
|
||||
"19 19 83 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F8F8F8",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #AEAEAE",
|
||||
"v c #FBFBFB",
|
||||
"w c #D8D8D8",
|
||||
"x c #FDFDFD",
|
||||
"y c #F1F1F1",
|
||||
"z c #E1E1E1",
|
||||
"A c #ABABAB",
|
||||
"B c #F4F4F4",
|
||||
"C c #FEFEFE",
|
||||
"D c #FCFCFC",
|
||||
"E c #E8E8E8",
|
||||
"F c #C4C4C4",
|
||||
"G c #F2F2F2",
|
||||
"H c #FFFFFF",
|
||||
"I c #E9E9E9",
|
||||
"J c #B1B1B1",
|
||||
"K c #EBEBEB",
|
||||
"L c #B4B4B4",
|
||||
"M c #F0F0F0",
|
||||
"N c #EFF1F1",
|
||||
"O c #C1C1C1",
|
||||
"P c #F3F3F3",
|
||||
"Q c #C3C0C3",
|
||||
"R c #EFEFEF",
|
||||
" ",
|
||||
"...................",
|
||||
"++++++@#$$$#%&+++++",
|
||||
"****=&-;>>,'@)!****",
|
||||
"~~~='{ ]^/(_:<)[~~~",
|
||||
"}}|1234,567%890)a}}",
|
||||
"ba-cd>efffgheij#[kb",
|
||||
"~ilmnohhfgghoopqrkb",
|
||||
"[;stohhooooooeo~#a~",
|
||||
"nu_hh6o6veveee6o[w~",
|
||||
"0(|fho6vxxxxvee6y=z",
|
||||
"{ABfhovxCCCCxDD6oEz",
|
||||
"jFGBgexCHHHCCDvvoGp",
|
||||
"9=yBhexCCHHCCxDv6fI",
|
||||
"JyyBhvxCHHHCCxDve6K",
|
||||
"LMGBhDCCHHHHHCDve6N",
|
||||
"{MGg6DCCHHHHHCDv6ey",
|
||||
"OPfoDCCHHHHHCDve6eG",
|
||||
"QPg6DCCHHHHHCDv6e6R"};
|
||||
37
styles/arch/pixmaps/menuiconfcs.xpm
Normal file
37
styles/arch/pixmaps/menuiconfcs.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * menuiconfcs_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #454545",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"=======-----=======",
|
||||
"*******************",
|
||||
"*******-----*******",
|
||||
"*******************",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
37
styles/arch/pixmaps/menuiconpr.xpm
Normal file
37
styles/arch/pixmaps/menuiconpr.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * menuiconpr_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #454545",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"=======-----=======",
|
||||
"*******************",
|
||||
"*******-----*******",
|
||||
"*******************",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
37
styles/arch/pixmaps/menuiconufcs.xpm
Normal file
37
styles/arch/pixmaps/menuiconufcs.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * menuiconufcs_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #454545",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"=======-----=======",
|
||||
"*******************",
|
||||
"*******-----*******",
|
||||
"*******************",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
113
styles/arch/pixmaps/minfcs.xpm
Normal file
113
styles/arch/pixmaps/minfcs.xpm
Normal file
|
|
@ -0,0 +1,113 @@
|
|||
/* XPM */
|
||||
static char * minfcs_xpm[] = {
|
||||
"19 19 91 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F8F8F8",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #AEAEAE",
|
||||
"v c #FBFBFB",
|
||||
"w c #D8D8D8",
|
||||
"x c #F3F3F3",
|
||||
"y c #000000",
|
||||
"z c #FCFCFC",
|
||||
"A c #F1F1F1",
|
||||
"B c #E1E1E1",
|
||||
"C c #ABABAB",
|
||||
"D c #F4F4F4",
|
||||
"E c #E6E6E6",
|
||||
"F c #F0F0F0",
|
||||
"G c #E9E9E9",
|
||||
"H c #E8E8E8",
|
||||
"I c #C4C4C4",
|
||||
"J c #F2F2F2",
|
||||
"K c #D7D7D7",
|
||||
"L c #BFBFBF",
|
||||
"M c #EFEFEF",
|
||||
"N c #B1B1B1",
|
||||
"O c #808080",
|
||||
"P c #EBEBEB",
|
||||
"Q c #B4B4B4",
|
||||
"R c #8B8B8B",
|
||||
"S c #797979",
|
||||
"T c #EFF1F1",
|
||||
"U c #B9B9B9",
|
||||
"V c #A8A8A8",
|
||||
"W c #C1C1C1",
|
||||
"X c #FEFEFE",
|
||||
"Y c #E4E4E4",
|
||||
"Z c #C3C0C3",
|
||||
" ",
|
||||
"...................",
|
||||
"++++++@#$$$#%&+++++",
|
||||
"****=&-;>>,'@)!****",
|
||||
"~~~='{ ]^/(_:<)[~~~",
|
||||
"}}|1234,567%890)a}}",
|
||||
"ba-cd>efffgheij#[kb",
|
||||
"~ilmnohhfgghoopqrkb",
|
||||
"[;stohhooooooeo~#a~",
|
||||
"nu_hh6h6veve6e6o[w~",
|
||||
"0(|ffxygezeoyfo6A=B",
|
||||
"{CDDAEyyFgFyyGgooHB",
|
||||
"jIJJ5KLyyyyy>wM6oJp",
|
||||
"9=AJ5nu(yyy(u+M66fG",
|
||||
"NAAxMa:4OyO4:*Dee6P",
|
||||
"QFJDDMwNRSRj!A6ve6T",
|
||||
"{FJg6oFwUVU!Aezv6eA",
|
||||
"WxfozXeJY[YJezve6eJ",
|
||||
"Zxg6zXXz6g6zXzv6e6M"};
|
||||
107
styles/arch/pixmaps/minpr.xpm
Normal file
107
styles/arch/pixmaps/minpr.xpm
Normal file
|
|
@ -0,0 +1,107 @@
|
|||
/* XPM */
|
||||
static char * minpr_xpm[] = {
|
||||
"19 19 85 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F8F8F8",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #AEAEAE",
|
||||
"v c #FBFBFB",
|
||||
"w c #D8D8D8",
|
||||
"x c #FCFCFC",
|
||||
"y c #FDFDFD",
|
||||
"z c #F1F1F1",
|
||||
"A c #E1E1E1",
|
||||
"B c #ABABAB",
|
||||
"C c #F4F4F4",
|
||||
"D c #F2F2F2",
|
||||
"E c #000000",
|
||||
"F c #E8E8E8",
|
||||
"G c #C4C4C4",
|
||||
"H c #F3F3F3",
|
||||
"I c #EEEEEE",
|
||||
"J c #F0F0F0",
|
||||
"K c #EFEFEF",
|
||||
"L c #E9E9E9",
|
||||
"M c #B1B1B1",
|
||||
"N c #EBEBEB",
|
||||
"O c #B4B4B4",
|
||||
"P c #E6E6E6",
|
||||
"Q c #EFF1F1",
|
||||
"R c #C1C1C1",
|
||||
"S c #FEFEFE",
|
||||
"T c #C3C0C3",
|
||||
" ",
|
||||
"...................",
|
||||
"++++++@#$$$#%&+++++",
|
||||
"****=&-;>>,'@)!****",
|
||||
"~~~='{ ]^/(_:<)[~~~",
|
||||
"}}|1234,567%890)a}}",
|
||||
"ba-cd>efffgheij#[kb",
|
||||
"~ilmnohhfgghoopqrkb",
|
||||
"[;stohhooooooeo~#a~",
|
||||
"nu_hh6o6veveee6o[w~",
|
||||
"0(|fghh6xyxv6666z=A",
|
||||
"{BCffDEfevegEge6oFA",
|
||||
"jGDHDIEEzCzEEJheoDp",
|
||||
"9=zHH7~EEEEE}Koe6fL",
|
||||
"MzzCCzp|EEE|FH6ve6N",
|
||||
"OJDCgozb!E!PDevve6Q",
|
||||
"{JDg6v6zF~FDeyxv6ez",
|
||||
"RHfoxSyvgHgvyxve6eD",
|
||||
"THg6xSSSyxySSxv6e6K"};
|
||||
105
styles/arch/pixmaps/minufcs.xpm
Normal file
105
styles/arch/pixmaps/minufcs.xpm
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
/* XPM */
|
||||
static char * minufcs_xpm[] = {
|
||||
"19 19 83 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #D0D0D0",
|
||||
"# c #CDCDCD",
|
||||
"$ c #CACACA",
|
||||
"% c #CFCFCF",
|
||||
"& c #D2D2D2",
|
||||
"* c #DFDFDF",
|
||||
"= c #DADADA",
|
||||
"- c #C9C9C9",
|
||||
"; c #C2C2C2",
|
||||
"> c #C0C0C0",
|
||||
", c #C3C3C3",
|
||||
"' c #CCCCCC",
|
||||
") c #D6D6D6",
|
||||
"! c #D9D9D9",
|
||||
"~ c #E2E2E2",
|
||||
"{ c #BBBBBB",
|
||||
"] c #979797",
|
||||
"^ c #8F8F8F",
|
||||
"/ c #919191",
|
||||
"( c #9C9C9C",
|
||||
"_ c #A9A9A9",
|
||||
": c #BABABA",
|
||||
"< c #CBCBCB",
|
||||
"[ c #DCDCDC",
|
||||
"} c #E3E3E3",
|
||||
"| c #DBDBDB",
|
||||
"1 c #C8C8C8",
|
||||
"2 c #ADADAD",
|
||||
"3 c #8A8A8A",
|
||||
"4 c #959595",
|
||||
"5 c #EAEAEA",
|
||||
"6 c #F9F9F9",
|
||||
"7 c #ECECEC",
|
||||
"8 c #B3B3B3",
|
||||
"9 c #AFAFAF",
|
||||
"0 c #C6C6C6",
|
||||
"a c #DDDDDD",
|
||||
"b c #E5E5E5",
|
||||
"c c #ACACAC",
|
||||
"d c #818181",
|
||||
"e c #FAFAFA",
|
||||
"f c #F5F5F5",
|
||||
"g c #F6F6F6",
|
||||
"h c #F7F7F7",
|
||||
"i c #D5D5D5",
|
||||
"j c #B2B2B2",
|
||||
"k c #E0E0E0",
|
||||
"l c #B6B6B6",
|
||||
"m c #868686",
|
||||
"n c #D1D1D1",
|
||||
"o c #F8F8F8",
|
||||
"p c #E7E7E7",
|
||||
"q c #BEBEBE",
|
||||
"r c #D3D3D6",
|
||||
"s c #939393",
|
||||
"t c #C5C5C5",
|
||||
"u c #AEAEAE",
|
||||
"v c #FBFBFB",
|
||||
"w c #D8D8D8",
|
||||
"x c #FDFDFD",
|
||||
"y c #F1F1F1",
|
||||
"z c #E1E1E1",
|
||||
"A c #ABABAB",
|
||||
"B c #F4F4F4",
|
||||
"C c #FEFEFE",
|
||||
"D c #FCFCFC",
|
||||
"E c #E8E8E8",
|
||||
"F c #C4C4C4",
|
||||
"G c #F2F2F2",
|
||||
"H c #FFFFFF",
|
||||
"I c #E9E9E9",
|
||||
"J c #B1B1B1",
|
||||
"K c #EBEBEB",
|
||||
"L c #B4B4B4",
|
||||
"M c #F0F0F0",
|
||||
"N c #EFF1F1",
|
||||
"O c #C1C1C1",
|
||||
"P c #F3F3F3",
|
||||
"Q c #C3C0C3",
|
||||
"R c #EFEFEF",
|
||||
" ",
|
||||
"...................",
|
||||
"++++++@#$$$#%&+++++",
|
||||
"****=&-;>>,'@)!****",
|
||||
"~~~='{ ]^/(_:<)[~~~",
|
||||
"}}|1234,567%890)a}}",
|
||||
"ba-cd>efffgheij#[kb",
|
||||
"~ilmnohhfgghoopqrkb",
|
||||
"[;stohhooooooeo~#a~",
|
||||
"nu_hh6o6veveee6o[w~",
|
||||
"0(|fho6vxxxxvee6y=z",
|
||||
"{ABfhovxCCCCxDD6oEz",
|
||||
"jFGBgexCHHHCCDvvoGp",
|
||||
"9=yBhexCCHHCCxDv6fI",
|
||||
"JyyBhvxCHHHCCxDve6K",
|
||||
"LMGBhDCCHHHHHCDve6N",
|
||||
"{MGg6DCCHHHHHCDv6ey",
|
||||
"OPfoDCCHHHHHCDve6eG",
|
||||
"QPg6DCCHHHHHCDv6e6R"};
|
||||
26
styles/arch/pixmaps/selected.xpm
Normal file
26
styles/arch/pixmaps/selected.xpm
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/* XPM */
|
||||
static char *selected[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 4 1",
|
||||
" c black",
|
||||
". c #E7E7E7",
|
||||
"X c gray100",
|
||||
"o c None",
|
||||
/* pixels */
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"o.........oXoooo",
|
||||
"o.ooooooo.XXoooo",
|
||||
"o.oooooooXXXoooo",
|
||||
"o.ooooooXXXXoooo",
|
||||
"o.oXoooXXXXooooo",
|
||||
"o.oXXoXXXXoooooo",
|
||||
"o.oXXXXXX.oooooo",
|
||||
"o.oXXXXXo.oooooo",
|
||||
"o.ooXXXoo.oooooo",
|
||||
"o.oooXooo.oooooo",
|
||||
"o.........oooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo"
|
||||
};
|
||||
37
styles/arch/pixmaps/shadefcs.xpm
Normal file
37
styles/arch/pixmaps/shadefcs.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * shadefcs_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #3A3A3A",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"===================",
|
||||
"*******************",
|
||||
"*********-*********",
|
||||
"********-*-********",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
37
styles/arch/pixmaps/shadepr.xpm
Normal file
37
styles/arch/pixmaps/shadepr.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * shadepr_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #3A3A3A",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"===================",
|
||||
"*******************",
|
||||
"*********-*********",
|
||||
"********-*-********",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
37
styles/arch/pixmaps/shadeufcs.xpm
Normal file
37
styles/arch/pixmaps/shadeufcs.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * shadeufcs_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #3A3A3A",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"===================",
|
||||
"*******************",
|
||||
"*********-*********",
|
||||
"********-*-********",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
74
styles/arch/pixmaps/stickfcs.xpm
Normal file
74
styles/arch/pixmaps/stickfcs.xpm
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
/* XPM */
|
||||
static char * stickfcs_xpm[] = {
|
||||
"19 19 52 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E9EAEA",
|
||||
"= c #EAEAEB",
|
||||
"- c #EBEBEB",
|
||||
"; c #EAEAEA",
|
||||
"> c #E8E8E8",
|
||||
", c #E6E6E6",
|
||||
"' c #EDEDED",
|
||||
") c #EFEFEF",
|
||||
"! c #EEEEEE",
|
||||
"~ c #ECECEC",
|
||||
"{ c #EFEEEE",
|
||||
"] c #F1F1F1",
|
||||
"^ c #F3F3F3",
|
||||
"/ c #F2F2F2",
|
||||
"( c #F0F0F0",
|
||||
"_ c #E9E9E9",
|
||||
": c #F4F5F4",
|
||||
"< c #F7F7F7",
|
||||
"[ c #F8F7F7",
|
||||
"} c #F6F6F6",
|
||||
"| c #FBFBFB",
|
||||
"1 c #FCFCFC",
|
||||
"2 c #F9F9F9",
|
||||
"3 c #F5F5F4",
|
||||
"4 c #9D9D9D",
|
||||
"5 c #A0A0A0",
|
||||
"6 c #A3A3A3",
|
||||
"7 c #A6A6A6",
|
||||
"8 c #A8A8A8",
|
||||
"9 c #AAAAAA",
|
||||
"0 c #A4A4A4",
|
||||
"a c #A2A2A2",
|
||||
"b c #9E9E9E",
|
||||
"c c #F1F2F2",
|
||||
"d c #F5F5F5",
|
||||
"e c #F8F8F8",
|
||||
"f c #EFF0EF",
|
||||
"g c #F4F4F4",
|
||||
"h c #F1F0F1",
|
||||
"i c #E4E4E4",
|
||||
"j c #EBEBEA",
|
||||
"k c #EAEAE9",
|
||||
"l c #E1E1E1",
|
||||
"m c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$#%&*=-;>,$$$$$",
|
||||
"%%%%%%>-'))!~;,%%%%",
|
||||
"&&&&&&-{]^^/('_&&&&",
|
||||
">>>>>_']:<[}^)->>>>",
|
||||
"_____;{^<|123(~____",
|
||||
">>>>>456789 0ab>>>>",
|
||||
">>>>>*!cde2<^f->>>>",
|
||||
">>>>>>~)/gg^h';>>>>",
|
||||
",,,,,%_~!(()';&,,,,",
|
||||
"iiiii$,>j~~-k&iiiii",
|
||||
"lllllllllllllllllll",
|
||||
"lllllllllllllllllll",
|
||||
"lllllllllllllllllll",
|
||||
"mmmmmmmmmmmmmmmmmmm"};
|
||||
80
styles/arch/pixmaps/stickpr.xpm
Normal file
80
styles/arch/pixmaps/stickpr.xpm
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
/* XPM */
|
||||
static char * stickpr_xpm[] = {
|
||||
"19 19 58 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E9EAEA",
|
||||
"= c #EAEAEB",
|
||||
"- c #EBEBEB",
|
||||
"; c #EAEAEA",
|
||||
"> c #E8E8E8",
|
||||
", c #E6E6E6",
|
||||
"' c #EDEDED",
|
||||
") c #EFEFEF",
|
||||
"! c #EEEEEE",
|
||||
"~ c #ECECEC",
|
||||
"{ c #C8C8C8",
|
||||
"] c #CCCCCC",
|
||||
"^ c #E8E7E7",
|
||||
"/ c #F1F1F1",
|
||||
"( c #F3F3F3",
|
||||
"_ c #F2F2F2",
|
||||
": c #F0F0F0",
|
||||
"< c #E9E9E9",
|
||||
"[ c #686868",
|
||||
"} c #636363",
|
||||
"| c #B5B5B5",
|
||||
"1 c #CCCDCC",
|
||||
"2 c #D5D5D5",
|
||||
"3 c #F1F0F0",
|
||||
"4 c #F6F6F6",
|
||||
"5 c #CBCBCB",
|
||||
"6 c #B4B3B3",
|
||||
"7 c #666666",
|
||||
"8 c #535353",
|
||||
"9 c #696969",
|
||||
"0 c #BEBEBE",
|
||||
"a c #D0D0D0",
|
||||
"b c #CFCFCF",
|
||||
"c c #BDBDBD",
|
||||
"d c #6A6A6A",
|
||||
"e c #545454",
|
||||
"f c #676767",
|
||||
"g c #F1F2F2",
|
||||
"h c #F5F5F5",
|
||||
"i c #D8D8D8",
|
||||
"j c #B7B7B7",
|
||||
"k c #646564",
|
||||
"l c #F4F4F4",
|
||||
"m c #EBEAEB",
|
||||
"n c #CDCDCD",
|
||||
"o c #E4E4E4",
|
||||
"p c #EBEBEA",
|
||||
"q c #EAEAE9",
|
||||
"r c #E1E1E1",
|
||||
"s c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$#%&*=-;>,$$$$$",
|
||||
"%%%%%%>-'))!~;,%%%%",
|
||||
"&&&&&{]^/((_:'<&&&&",
|
||||
">>>>>[}|1234()->>>>",
|
||||
"<<<<<567890a+<~<<<<",
|
||||
">>>>>;<+bcdef|]>>>>",
|
||||
">>>>>*!gh_ibjk9>>>>",
|
||||
">>>>>>~)_ll(mn5>>>>",
|
||||
",,,,,%<~!::)';&,,,,",
|
||||
"ooooo$,>p~~-q&ooooo",
|
||||
"rrrrrrrrrrrrrrrrrrr",
|
||||
"rrrrrrrrrrrrrrrrrrr",
|
||||
"rrrrrrrrrrrrrrrrrrr",
|
||||
"sssssssssssssssssss"};
|
||||
74
styles/arch/pixmaps/stickufcs.xpm
Normal file
74
styles/arch/pixmaps/stickufcs.xpm
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
/* XPM */
|
||||
static char * stickufcs_xpm[] = {
|
||||
"19 19 52 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E9EAEA",
|
||||
"= c #EAEAEB",
|
||||
"- c #EBEBEB",
|
||||
"; c #EAEAEA",
|
||||
"> c #E8E8E8",
|
||||
", c #E6E6E6",
|
||||
"' c #EDEDED",
|
||||
") c #EFEFEF",
|
||||
"! c #EEEEEE",
|
||||
"~ c #ECECEC",
|
||||
"{ c #EFEEEE",
|
||||
"] c #F1F1F1",
|
||||
"^ c #F3F3F3",
|
||||
"/ c #F2F2F2",
|
||||
"( c #F0F0F0",
|
||||
"_ c #E9E9E9",
|
||||
": c #F4F5F4",
|
||||
"< c #F7F7F7",
|
||||
"[ c #F8F7F7",
|
||||
"} c #F6F6F6",
|
||||
"| c #FBFBFB",
|
||||
"1 c #FCFCFC",
|
||||
"2 c #F9F9F9",
|
||||
"3 c #F5F5F4",
|
||||
"4 c #9D9D9D",
|
||||
"5 c #A0A0A0",
|
||||
"6 c #A3A3A3",
|
||||
"7 c #A6A6A6",
|
||||
"8 c #A8A8A8",
|
||||
"9 c #AAAAAA",
|
||||
"0 c #A4A4A4",
|
||||
"a c #A2A2A2",
|
||||
"b c #9E9E9E",
|
||||
"c c #F1F2F2",
|
||||
"d c #F5F5F5",
|
||||
"e c #F8F8F8",
|
||||
"f c #EFF0EF",
|
||||
"g c #F4F4F4",
|
||||
"h c #F1F0F1",
|
||||
"i c #E4E4E4",
|
||||
"j c #EBEBEA",
|
||||
"k c #EAEAE9",
|
||||
"l c #E1E1E1",
|
||||
"m c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$#%&*=-;>,$$$$$",
|
||||
"%%%%%%>-'))!~;,%%%%",
|
||||
"&&&&&&-{]^^/('_&&&&",
|
||||
">>>>>_']:<[}^)->>>>",
|
||||
"_____;{^<|123(~____",
|
||||
">>>>>456789 0ab>>>>",
|
||||
">>>>>*!cde2<^f->>>>",
|
||||
">>>>>>~)/gg^h';>>>>",
|
||||
",,,,,%_~!(()';&,,,,",
|
||||
"iiiii$,>j~~-k&iiiii",
|
||||
"lllllllllllllllllll",
|
||||
"lllllllllllllllllll",
|
||||
"lllllllllllllllllll",
|
||||
"mmmmmmmmmmmmmmmmmmm"};
|
||||
78
styles/arch/pixmaps/stuckfcs.xpm
Normal file
78
styles/arch/pixmaps/stuckfcs.xpm
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
/* XPM */
|
||||
static char * stuckfcs_xpm[] = {
|
||||
"19 19 56 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #DDDDDD",
|
||||
"% c #E3E3E3",
|
||||
"& c #787878",
|
||||
"* c #B3B3B3",
|
||||
"= c #E1E1E1",
|
||||
"- c #E9EAEA",
|
||||
"; c #EAEAEB",
|
||||
"> c #EBEBEB",
|
||||
", c #EAEAEA",
|
||||
"' c #E8E8E8",
|
||||
") c #E6E6E6",
|
||||
"! c #E5E5E5",
|
||||
"~ c #E0E0E0",
|
||||
"{ c #747474",
|
||||
"] c #B7B7B7",
|
||||
"^ c #EFEFEF",
|
||||
"/ c #EEEEEE",
|
||||
"( c #ECECEC",
|
||||
"_ c #E7E7E7",
|
||||
": c #787777",
|
||||
"< c #F3F3F3",
|
||||
"[ c #F2F2F2",
|
||||
"} c #F0F0F0",
|
||||
"| c #EDEDED",
|
||||
"1 c #E9E9E9",
|
||||
"2 c #7A7B7A",
|
||||
"3 c #C1C1C1",
|
||||
"4 c #F1F0F0",
|
||||
"5 c #F6F6F6",
|
||||
"6 c #EFEEEE",
|
||||
"7 c #7E7E7E",
|
||||
"8 c #C5C5C5",
|
||||
"9 c #F5F5F4",
|
||||
"0 c #F1F1F1",
|
||||
"a c #C4C4C4",
|
||||
"b c #7F7F7F",
|
||||
"c c #C2C2C2",
|
||||
"d c #F1F2F2",
|
||||
"e c #F5F5F5",
|
||||
"f c #7C7C7C",
|
||||
"g c #BEBEBE",
|
||||
"h c #E8E9E8",
|
||||
"i c #F4F4F4",
|
||||
"j c #797879",
|
||||
"k c #B9B9B9",
|
||||
"l c #E4E4E4",
|
||||
"m c #757575",
|
||||
"n c #B4B4B4",
|
||||
"o c #EBEBEA",
|
||||
"p c #797979",
|
||||
"q c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"######$############",
|
||||
"%%%%%&*=-;>,')%%%%%",
|
||||
"!!!!~*{])^^/(,)!!!!",
|
||||
"_____#]:.(<[}|1____",
|
||||
"'''''1_.2345<^>''''",
|
||||
"11111,6|378[9}(1111",
|
||||
"''''',^<0abc/0(''''",
|
||||
"'''''-/de[cfgh>''''",
|
||||
"''''''(^[i/gjkl''''",
|
||||
")))))!1(/}}1kmn))))",
|
||||
"lllll%)'o((>lnpllll",
|
||||
"===================",
|
||||
"===================",
|
||||
"===================",
|
||||
"qqqqqqqqqqqqqqqqqqq"};
|
||||
78
styles/arch/pixmaps/stuckufcs.xpm
Normal file
78
styles/arch/pixmaps/stuckufcs.xpm
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
/* XPM */
|
||||
static char * stuckufcs_xpm[] = {
|
||||
"19 19 56 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #DDDDDD",
|
||||
"% c #E3E3E3",
|
||||
"& c #787878",
|
||||
"* c #B3B3B3",
|
||||
"= c #E1E1E1",
|
||||
"- c #E9EAEA",
|
||||
"; c #EAEAEB",
|
||||
"> c #EBEBEB",
|
||||
", c #EAEAEA",
|
||||
"' c #E8E8E8",
|
||||
") c #E6E6E6",
|
||||
"! c #E5E5E5",
|
||||
"~ c #E0E0E0",
|
||||
"{ c #747474",
|
||||
"] c #B7B7B7",
|
||||
"^ c #EFEFEF",
|
||||
"/ c #EEEEEE",
|
||||
"( c #ECECEC",
|
||||
"_ c #E7E7E7",
|
||||
": c #787777",
|
||||
"< c #F3F3F3",
|
||||
"[ c #F2F2F2",
|
||||
"} c #F0F0F0",
|
||||
"| c #EDEDED",
|
||||
"1 c #E9E9E9",
|
||||
"2 c #7A7B7A",
|
||||
"3 c #C1C1C1",
|
||||
"4 c #F1F0F0",
|
||||
"5 c #F6F6F6",
|
||||
"6 c #EFEEEE",
|
||||
"7 c #7E7E7E",
|
||||
"8 c #C5C5C5",
|
||||
"9 c #F5F5F4",
|
||||
"0 c #F1F1F1",
|
||||
"a c #C4C4C4",
|
||||
"b c #7F7F7F",
|
||||
"c c #C2C2C2",
|
||||
"d c #F1F2F2",
|
||||
"e c #F5F5F5",
|
||||
"f c #7C7C7C",
|
||||
"g c #BEBEBE",
|
||||
"h c #E8E9E8",
|
||||
"i c #F4F4F4",
|
||||
"j c #797879",
|
||||
"k c #B9B9B9",
|
||||
"l c #E4E4E4",
|
||||
"m c #757575",
|
||||
"n c #B4B4B4",
|
||||
"o c #EBEBEA",
|
||||
"p c #797979",
|
||||
"q c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"######$############",
|
||||
"%%%%%&*=-;>,')%%%%%",
|
||||
"!!!!~*{])^^/(,)!!!!",
|
||||
"_____#]:.(<[}|1____",
|
||||
"'''''1_.2345<^>''''",
|
||||
"11111,6|378[9}(1111",
|
||||
"''''',^<0abc/0(''''",
|
||||
"'''''-/de[cfgh>''''",
|
||||
"''''''(^[i/gjkl''''",
|
||||
")))))!1(/}}1kmn))))",
|
||||
"lllll%)'o((>lnpllll",
|
||||
"===================",
|
||||
"===================",
|
||||
"===================",
|
||||
"qqqqqqqqqqqqqqqqqqq"};
|
||||
36
styles/arch/pixmaps/tbarfcs.xpm
Normal file
36
styles/arch/pixmaps/tbarfcs.xpm
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
/* XPM */
|
||||
static char * tbarfcs_xpm[] = {
|
||||
"19 19 14 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #E6E6E6",
|
||||
"; c #E4E4E4",
|
||||
"> c #E1E1E1",
|
||||
", c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"===================",
|
||||
"*******************",
|
||||
"*******************",
|
||||
"*******************",
|
||||
"-------------------",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,"};
|
||||
40
styles/arch/pixmaps/tbarufcs.xpm
Normal file
40
styles/arch/pixmaps/tbarufcs.xpm
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/* XPM */
|
||||
static char * tbarufcs_xpm[] = {
|
||||
"19 19 18 1",
|
||||
" c #A7A7A7",
|
||||
". c #A8A8A8",
|
||||
"+ c #BCBCBC",
|
||||
"@ c #BDBDBD",
|
||||
"# c #D3D3D3",
|
||||
"$ c #D2D2D2",
|
||||
"% c #DFDFDF",
|
||||
"& c #E0E0E0",
|
||||
"* c #E2E2E2",
|
||||
"= c #E3E3E3",
|
||||
"- c #E4E4E4",
|
||||
"; c #E5E5E5",
|
||||
"> c #E7E7E7",
|
||||
", c #E6E6E6",
|
||||
"' c #E8E8E8",
|
||||
") c #E9E9E9",
|
||||
"! c #E1E1E1",
|
||||
"~ c #DCDCDC",
|
||||
" . . . . . . . . . ",
|
||||
"+@+@+@+@+@+@+@+@+@+",
|
||||
"#$$##$#$#$$##$#$#$$",
|
||||
"%%&%&%%%%%&%&%%%%%&",
|
||||
"*==*=****==*=****==",
|
||||
"=-========-==--==-=",
|
||||
";;----;---;;;;;;;;=",
|
||||
">>,,,,;,,,>>>>,>>>;",
|
||||
"''>>>>>>>>''''''''>",
|
||||
"))''''''''))))))))'",
|
||||
"''''''''''''''''''>",
|
||||
"''>>>>>>>>''''''''>",
|
||||
"''>>>>>>>>''''''''>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"-------------------",
|
||||
"!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!",
|
||||
"!!!!!!!!!!!!!!!!!!!",
|
||||
"~~~~~~~~~~~~~~~~~~~"};
|
||||
26
styles/arch/pixmaps/unselected.xpm
Normal file
26
styles/arch/pixmaps/unselected.xpm
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/* XPM */
|
||||
static char *unselected[] = {
|
||||
/* columns rows colors chars-per-pixel */
|
||||
"16 16 4 1",
|
||||
" c black",
|
||||
". c #E7E7E7",
|
||||
"X c gray100",
|
||||
"o c None",
|
||||
/* pixels */
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo",
|
||||
"o.........oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.ooooooo.oooooo",
|
||||
"o.........oooooo",
|
||||
"oooooooooooooooo",
|
||||
"oooooooooooooooo"
|
||||
};
|
||||
37
styles/arch/pixmaps/unshadefcs.xpm
Normal file
37
styles/arch/pixmaps/unshadefcs.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * unshadefcs_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #3A3A3A",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"===================",
|
||||
"*******************",
|
||||
"********-*-********",
|
||||
"*********-*********",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
37
styles/arch/pixmaps/unshadepr.xpm
Normal file
37
styles/arch/pixmaps/unshadepr.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * unshadepr_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #3A3A3A",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"===================",
|
||||
"*******************",
|
||||
"********-*-********",
|
||||
"*********-*********",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
37
styles/arch/pixmaps/unshadeufcs.xpm
Normal file
37
styles/arch/pixmaps/unshadeufcs.xpm
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
/* XPM */
|
||||
static char * unshadeufcs_xpm[] = {
|
||||
"19 19 15 1",
|
||||
" c #A7A7A7",
|
||||
". c #BCBCBC",
|
||||
"+ c #D3D3D3",
|
||||
"@ c #DFDFDF",
|
||||
"# c #E2E2E2",
|
||||
"$ c #E3E3E3",
|
||||
"% c #E5E5E5",
|
||||
"& c #E7E7E7",
|
||||
"* c #E8E8E8",
|
||||
"= c #E9E9E9",
|
||||
"- c #3A3A3A",
|
||||
"; c #E6E6E6",
|
||||
"> c #E4E4E4",
|
||||
", c #E1E1E1",
|
||||
"' c #DCDCDC",
|
||||
" ",
|
||||
"...................",
|
||||
"+++++++++++++++++++",
|
||||
"@@@@@@@@@@@@@@@@@@@",
|
||||
"###################",
|
||||
"$$$$$$$$$$$$$$$$$$$",
|
||||
"%%%%%%%%%%%%%%%%%%%",
|
||||
"&&&&&&&&&&&&&&&&&&&",
|
||||
"*******************",
|
||||
"===================",
|
||||
"*******************",
|
||||
"********-*-********",
|
||||
"*********-*********",
|
||||
";;;;;;;;;;;;;;;;;;;",
|
||||
">>>>>>>>>>>>>>>>>>>",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
",,,,,,,,,,,,,,,,,,,",
|
||||
"'''''''''''''''''''"};
|
||||
238
styles/arch/theme.cfg
Normal file
238
styles/arch/theme.cfg
Normal file
|
|
@ -0,0 +1,238 @@
|
|||
#This work is licensed under a Creative Commons Attribution-Share Alike 3.0 License.
|
||||
#(http://creativecommons.org/licenses/by-sa/3.0/de/deed.en)
|
||||
|
||||
|
||||
|
||||
###############################################################################
|
||||
#
|
||||
# name: arch
|
||||
# made: tenner
|
||||
# date: 30-11-2006
|
||||
# http://www.tenr.de
|
||||
#
|
||||
############################################################## BACKGROUND ######
|
||||
|
||||
background: flat
|
||||
background.color: #D5D6DB
|
||||
|
||||
############################################################## FONTS ##########
|
||||
|
||||
|
||||
menu.frame.font: sans-9:bold
|
||||
menu.title.font: sans-10:bold
|
||||
menu.title.font.effect: shadow
|
||||
menu.title.font.shadow.color: #c8c8c8
|
||||
toolbar.clock.font: sans-9:bold
|
||||
toolbar.workspace.font: tahoma-10:bold
|
||||
toolbar.iconbar.focused.font: sans-8:bold
|
||||
toolbar.iconbar.focused.font.effect: shadow
|
||||
toolbar.iconbar.focused.font.shadow.color: #c8c8c8
|
||||
toolbar.iconbar.unfocused.font: sans-8
|
||||
window.font: sans-8
|
||||
window.font.effect: shadow
|
||||
window.font.shadow.color: #c8c8c8
|
||||
|
||||
############################################################## MENU ###########
|
||||
|
||||
menu.bevelWidth: 1
|
||||
|
||||
#menu.itemHeight: 35
|
||||
#menu.titleHeight: 21
|
||||
|
||||
menu.borderColor: #3d3d3d
|
||||
menu.borderWidth: 1
|
||||
|
||||
menu.bullet.position: Right
|
||||
menu.bullet: triangle
|
||||
|
||||
menu.submenu.pixmap:
|
||||
menu.hilite.submenu.pixmap:
|
||||
|
||||
menu.selected.pixmap:
|
||||
menu.hilite.selected.pixmap:
|
||||
|
||||
menu.unselected.pixmap:
|
||||
menu.hilite.unselected.pixmap:
|
||||
|
||||
menu.title: flat
|
||||
menu.title.pixmap: tbarufcs.xpm
|
||||
menu.title.justify: center
|
||||
menu.title.color: #E3E3E3
|
||||
menu.title.colorTo: #E3E3E3
|
||||
menu.title.textColor: #175996
|
||||
|
||||
menu.frame: flat
|
||||
menu.frame.pixmap:
|
||||
menu.frame.justify: left
|
||||
menu.frame.color: #f9f9f9
|
||||
menu.frame.colorTo: #f9f9f9
|
||||
menu.frame.textColor: #3f3f3f
|
||||
menu.frame.disableColor: #579fe1
|
||||
|
||||
menu.hilite: flat
|
||||
menu.hilite.pixmap:
|
||||
menu.hilite.color: #668bae
|
||||
menu.hilite.colorTo: #668bae
|
||||
menu.hilite.textColor: #e7e7e7
|
||||
|
||||
############################################################## TOOLBAR ########
|
||||
|
||||
toolbar.bevelWidth: 0
|
||||
|
||||
toolbar.borderWidth: 1
|
||||
toolbar.borderColor: #3d3d3d
|
||||
|
||||
toolbar.height: 19
|
||||
|
||||
toolbar.justify: center
|
||||
|
||||
toolbar: flat
|
||||
toolbar.pixmap: tbarufcs.xpm
|
||||
toolbar.color: #E3E3E3
|
||||
toolbar.colorTo: #E3E3E3
|
||||
|
||||
toolbar.clock: flat
|
||||
toolbar.clock.pixmap: tbarufcs.xpm
|
||||
toolbar.clock.justify: center
|
||||
toolbar.clock.color: #E3E3E3
|
||||
toolbar.clock.colorTo: #E3E3E3
|
||||
toolbar.clock.textColor: #3f3f3f
|
||||
|
||||
toolbar.workspace: flat
|
||||
toolbar.workspace.pixmap: tbarufcs.xpm
|
||||
toolbar.workspace.justify: Center
|
||||
toolbar.workspace.color: #E3E3E3
|
||||
toolbar.workspace.colorTo: #E3E3E3
|
||||
toolbar.workspace.textColor: #3f3f3f
|
||||
|
||||
toolbar.button: flat
|
||||
toolbar.button.pixmap: tbarufcs.xpm
|
||||
toolbar.button.color: #E3E3E3
|
||||
toolbar.button.colorTo: #E3E3E3
|
||||
toolbar.button.picColor: #3f3f3f
|
||||
toolbar.button.pressed: flat
|
||||
toolbar.button.pressed.pixmap: tbarufcs.xpm
|
||||
toolbar.button.pressed.color: #E3E3E3
|
||||
toolbar.button.pressed.colorTo: #E3E3E3
|
||||
toolbar.button.pressed.picColor: #000000
|
||||
|
||||
toolbar.iconbar.empty: flat
|
||||
toolbar.iconbar.empty.pixmap: tbarufcs.xpm
|
||||
toolbar.iconbar.empty.color: #E3E3E3
|
||||
toolbar.iconbar.empty.colorTo: #E3E3E3
|
||||
|
||||
toolbar.iconbar.focused.borderWidth: 1
|
||||
toolbar.iconbar.focused.borderColor: #aeaeae
|
||||
toolbar.iconbar.focused: flat
|
||||
toolbar.iconbar.focused.pixmap: tbarfcs.xpm
|
||||
toolbar.iconbar.focused.color: #E3E3E3
|
||||
toolbar.iconbar.focused.colorTo: #E3E3E3
|
||||
toolbar.iconbar.focused.textColor: #175996
|
||||
toolbar.iconbar.focused.justify: center
|
||||
|
||||
toolbar.iconbar.unfocused.borderWidth: 1
|
||||
toolbar.iconbar.unfocused.borderColor: #aeaeae
|
||||
toolbar.iconbar.unfocused: flat
|
||||
toolbar.iconbar.unfocused.pixmap: tbarufcs.xpm
|
||||
toolbar.iconbar.unfocused.color: #E3E3E3
|
||||
toolbar.iconbar.unfocused.colorTo: #E3E3E3
|
||||
toolbar.iconbar.unfocused.textColor: #919191
|
||||
toolbar.iconbar.unfocused.justify: center
|
||||
|
||||
############################################################## WINDOW #########
|
||||
|
||||
window.bevelWidth: 0
|
||||
window.shade: false
|
||||
window.borderWidth: 1
|
||||
window.borderColor: #3d3d3d
|
||||
|
||||
window.justify: Center
|
||||
|
||||
window.title.height: 19
|
||||
|
||||
window.title.focus: flat
|
||||
window.title.focus.pixmap: tbarfcs.xpm
|
||||
window.title.focus.color: #E3E3E3
|
||||
window.title.focus.colorTo: #E3E3E3
|
||||
window.title.unfocus: flat
|
||||
window.title.unfocus.pixmap: tbarufcs.xpm
|
||||
window.title.unfocus.color: #E3E3E3
|
||||
window.title.unfocus.colorTo: #E3E3E3
|
||||
|
||||
window.label.focus: flat
|
||||
window.label.focus.pixmap: tbarfcs.xpm
|
||||
window.label.focus.color: #E3E3E3
|
||||
window.label.focus.colorTo: #E3E3E3
|
||||
window.label.focus.textColor: #175996
|
||||
window.label.unfocus: flat
|
||||
window.label.unfocus.pixmap: tbarufcs.xpm
|
||||
window.label.unfocus.color: #E3E3E3
|
||||
window.label.unfocus.colorTo: #E3E3E3
|
||||
window.label.unfocus.textColor: #919191
|
||||
|
||||
window.button.focus: flat
|
||||
window.button.focus.color: #E3E3E3
|
||||
window.button.focus.colorTo: #E3E3E3
|
||||
window.button.focus.picColor: #000000
|
||||
window.button.unfocus: flat
|
||||
window.button.unfocus.Color: #E3E3E3
|
||||
window.button.unfocus.ColorTo: #E3E3E3
|
||||
window.button.unfocus.picColor: #000000
|
||||
window.button.pressed: flat
|
||||
window.button.pressed.color: #E3E3E3
|
||||
window.button.pressed.colorTo: #E3E3E3
|
||||
window.button.pressed.picColor: #000000
|
||||
|
||||
window.shade.pixmap: shadefcs.xpm
|
||||
window.shade.unfocus.pixmap: shadeufcs.xpm
|
||||
window.shade.pressed.pixmap: shadepr.xpm
|
||||
|
||||
window.unshade.pixmap: unshadefcs.xpm
|
||||
window.unshade.unfocus.pixmap: unshadeufcs.xpm
|
||||
window.unshade.pressed.pixmap: unshadepr.xpm
|
||||
|
||||
window.menuicon.pixmap: menuiconfcs.xpm
|
||||
window.menuicon.unfocus.pixmap: menuiconufcs.xpm
|
||||
window.menuicon.pressed.pixmap: menuiconpr.xpm
|
||||
|
||||
window.close.pixmap: closefcs.xpm
|
||||
window.close.unfocus.pixmap: closeufcs.xpm
|
||||
window.close.pressed.pixmap: closepr.xpm
|
||||
|
||||
window.iconify.pixmap: minfcs.xpm
|
||||
window.iconify.unfocus.pixmap: minufcs.xpm
|
||||
window.iconify.pressed.pixmap: minpr.xpm
|
||||
|
||||
window.maximize.pixmap: maxfcs.xpm
|
||||
window.maximize.unfocus.pixmap: maxufcs.xpm
|
||||
window.maximize.pressed.pixmap: maxpr.xpm
|
||||
|
||||
window.stick.pixmap: stickfcs.xpm
|
||||
window.stick.unfocus.pixmap: stickufcs.xpm
|
||||
window.stick.pressed.pixmap: stickpr.xpm
|
||||
|
||||
window.stuck.pixmap: stuckfcs.xpm
|
||||
window.stuck.unfocus.pixmap: stuckufcs.xpm
|
||||
window.stuck.pressed.pixmap: stuckufcs.xpm
|
||||
|
||||
window.handle.focus: flat
|
||||
window.handle.focus.pixmap: tbarfcs.xpm
|
||||
window.handle.focus.color: #E3E3E3
|
||||
window.handle.focus.colorTo: #E3E3E3
|
||||
window.handle.unfocus: flat
|
||||
window.handle.unfocus.pixmap: tbarufcs.xpm
|
||||
window.handle.unfocus.color: #E3E3E3
|
||||
window.handle.unfocus.colorTo: #E3E3E3
|
||||
window.handleWidth: 3
|
||||
|
||||
window.grip.focus: flat
|
||||
window.grip.focus.pixmap: gripfcs.xpm
|
||||
window.grip.focus.color: #E3E3E3
|
||||
window.grip.focus.colorTo: #E3E3E3
|
||||
window.grip.unfocus: flat
|
||||
window.grip.unfocus.pixmap: tbarufcs.xpm
|
||||
window.grip.unfocus.color: #E3E3E3
|
||||
window.grip.unfocus.colorTo: #E3E3E3
|
||||
|
||||
###############################################################################
|
||||
# EOF
|
||||
3
styles/bloe/Makemodule.am
Normal file
3
styles/bloe/Makemodule.am
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
bloe_styledir = $(pkgdatadir)/styles/bloe
|
||||
|
||||
dist_bloe_style_DATA = data/styles/bloe/theme.cfg
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue