diff options
Diffstat (limited to 'linden')
-rw-r--r-- | linden/indra/newview/llnetmap.cpp | 7 | ||||
-rw-r--r-- | linden/indra/newview/llnetmap.h | 3 | ||||
-rw-r--r-- | linden/indra/newview/llworldmapview.cpp | 8 | ||||
-rw-r--r-- | linden/indra/newview/llworldmapview.h | 2 | ||||
-rw-r--r-- | linden/indra/newview/skins/default/colors_base.xml | 2 | ||||
-rw-r--r-- | linden/indra/newview/skins/silver/colors_base.xml | 378 |
6 files changed, 207 insertions, 193 deletions
diff --git a/linden/indra/newview/llnetmap.cpp b/linden/indra/newview/llnetmap.cpp index b277998..22dee9d 100644 --- a/linden/indra/newview/llnetmap.cpp +++ b/linden/indra/newview/llnetmap.cpp | |||
@@ -69,7 +69,7 @@ | |||
69 | 69 | ||
70 | #include "llglheaders.h" | 70 | #include "llglheaders.h" |
71 | 71 | ||
72 | const F32 MAP_SCALE_MIN = 64; | 72 | const F32 MAP_SCALE_MIN = 32; |
73 | const F32 MAP_SCALE_MID = 172; | 73 | const F32 MAP_SCALE_MID = 172; |
74 | const F32 MAP_SCALE_MAX = 512; | 74 | const F32 MAP_SCALE_MAX = 512; |
75 | const F32 MAP_SCALE_INCREMENT = 16; | 75 | const F32 MAP_SCALE_INCREMENT = 16; |
@@ -97,6 +97,9 @@ LLNetMap::LLNetMap( | |||
97 | mPixelsPerMeter = gMiniMapScale / REGION_WIDTH_METERS; | 97 | mPixelsPerMeter = gMiniMapScale / REGION_WIDTH_METERS; |
98 | 98 | ||
99 | LLNetMap::sRotateMap = gSavedSettings.getBOOL( "MiniMapRotate" ); | 99 | LLNetMap::sRotateMap = gSavedSettings.getBOOL( "MiniMapRotate" ); |
100 | |||
101 | glyph_color_avatar = gColors.getColor("NetMapGlyphColorAvatar"); | ||
102 | glyph_color_friend = gColors.getColor("NetMapGlyphColorFriend"); | ||
100 | 103 | ||
101 | // Surface texture is dynamically generated/updated. | 104 | // Surface texture is dynamically generated/updated. |
102 | // createObjectImage(); | 105 | // createObjectImage(); |
@@ -411,7 +414,7 @@ void LLNetMap::draw() | |||
411 | } | 414 | } |
412 | LLWorldMapView::drawAvatar( | 415 | LLWorldMapView::drawAvatar( |
413 | pos_map.mV[VX], pos_map.mV[VY], | 416 | pos_map.mV[VX], pos_map.mV[VY], |
414 | show_as_friend ? gFriendMapColor : gAvatarMapColor, | 417 | show_as_friend ? glyph_color_friend : glyph_color_avatar, |
415 | pos_map.mV[VZ]); | 418 | pos_map.mV[VZ]); |
416 | } | 419 | } |
417 | } | 420 | } |
diff --git a/linden/indra/newview/llnetmap.h b/linden/indra/newview/llnetmap.h index 3fb20cc..91027c5 100644 --- a/linden/indra/newview/llnetmap.h +++ b/linden/indra/newview/llnetmap.h | |||
@@ -84,7 +84,10 @@ protected: | |||
84 | 84 | ||
85 | public: | 85 | public: |
86 | LLHandle<LLView> mPopupMenuHandle; | 86 | LLHandle<LLView> mPopupMenuHandle; |
87 | |||
87 | LLColor4 mBackgroundColor; | 88 | LLColor4 mBackgroundColor; |
89 | LLColor4 glyph_color_avatar; | ||
90 | LLColor4 glyph_color_friend; | ||
88 | 91 | ||
89 | F32 mScale; // Size of a region in pixels | 92 | F32 mScale; // Size of a region in pixels |
90 | F32 mPixelsPerMeter; // world meters to map pixels | 93 | F32 mPixelsPerMeter; // world meters to map pixels |
diff --git a/linden/indra/newview/llworldmapview.cpp b/linden/indra/newview/llworldmapview.cpp index 92d9588..0d266dd 100644 --- a/linden/indra/newview/llworldmapview.cpp +++ b/linden/indra/newview/llworldmapview.cpp | |||
@@ -208,6 +208,8 @@ LLWorldMapView::LLWorldMapView(const std::string& name, const LLRect& rect ) | |||
208 | mTextBoxNorthWest = new LLTextBox( std::string("NW"), minor_dir_rect ); | 208 | mTextBoxNorthWest = new LLTextBox( std::string("NW"), minor_dir_rect ); |
209 | mTextBoxNorthWest->setColor( minor_color ); | 209 | mTextBoxNorthWest->setColor( minor_color ); |
210 | addChild( mTextBoxNorthWest ); | 210 | addChild( mTextBoxNorthWest ); |
211 | |||
212 | glyph_color_avatar = gColors.getColor("NetMapGlyphColorAvatar"); | ||
211 | } | 213 | } |
212 | 214 | ||
213 | 215 | ||
@@ -886,8 +888,8 @@ void LLWorldMapView::drawAgents() | |||
886 | S32 agent_count = info.mExtra; | 888 | S32 agent_count = info.mExtra; |
887 | sim_agent_count += info.mExtra; | 889 | sim_agent_count += info.mExtra; |
888 | // Here's how we'd choose the color if info.mID were available but it's not being sent: | 890 | // Here's how we'd choose the color if info.mID were available but it's not being sent: |
889 | //LLColor4 color = (agent_count == 1 && is_agent_friend(info.mID)) ? gFriendMapColor : gAvatarMapColor; | 891 | //LLColor4 color = (agent_count == 1 && is_agent_friend(info.mID)) ? glyph_color_friend : glyph_color_avatar; |
890 | drawImageStack(info.mPosGlobal, sAvatarSmallImage, agent_count, 3.f, gAvatarMapColor); | 892 | drawImageStack(info.mPosGlobal, sAvatarSmallImage, agent_count, 3.f, glyph_color_avatar); |
891 | } | 893 | } |
892 | LLWorldMap::getInstance()->mNumAgents[handle] = sim_agent_count; // override mNumAgents for this sim | 894 | LLWorldMap::getInstance()->mNumAgents[handle] = sim_agent_count; // override mNumAgents for this sim |
893 | } | 895 | } |
@@ -902,7 +904,7 @@ void LLWorldMapView::drawAgents() | |||
902 | region_center[VY] += REGION_WIDTH_METERS / 2; | 904 | region_center[VY] += REGION_WIDTH_METERS / 2; |
903 | // Reduce the stack size as you zoom out - always display at lease one agent where there is one or more | 905 | // Reduce the stack size as you zoom out - always display at lease one agent where there is one or more |
904 | S32 agent_count = (S32)(((num_agents-1) * agents_scale + (num_agents-1) * 0.1f)+.1f) + 1; | 906 | S32 agent_count = (S32)(((num_agents-1) * agents_scale + (num_agents-1) * 0.1f)+.1f) + 1; |
905 | drawImageStack(region_center, sAvatarSmallImage, agent_count, 3.f, gAvatarMapColor); | 907 | drawImageStack(region_center, sAvatarSmallImage, agent_count, 3.f, glyph_color_avatar); |
906 | } | 908 | } |
907 | } | 909 | } |
908 | } | 910 | } |
diff --git a/linden/indra/newview/llworldmapview.h b/linden/indra/newview/llworldmapview.h index 915a196..53f0bdd 100644 --- a/linden/indra/newview/llworldmapview.h +++ b/linden/indra/newview/llworldmapview.h | |||
@@ -189,6 +189,8 @@ public: | |||
189 | handle_list_t mVisibleRegions; // set every frame | 189 | handle_list_t mVisibleRegions; // set every frame |
190 | 190 | ||
191 | static std::map<std::string,std::string> sStringsMap; | 191 | static std::map<std::string,std::string> sStringsMap; |
192 | |||
193 | LLColor4 glyph_color_avatar; | ||
192 | }; | 194 | }; |
193 | 195 | ||
194 | #endif | 196 | #endif |
diff --git a/linden/indra/newview/skins/default/colors_base.xml b/linden/indra/newview/skins/default/colors_base.xml index 3b85efa..a3e8d62 100644 --- a/linden/indra/newview/skins/default/colors_base.xml +++ b/linden/indra/newview/skins/default/colors_base.xml | |||
@@ -140,6 +140,8 @@ | |||
140 | <NetMapGroupOwnBelowWater value="200, 0, 200, 255" /> | 140 | <NetMapGroupOwnBelowWater value="200, 0, 200, 255" /> |
141 | <NetMapOtherOwnAboveWater value="60, 60, 60, 255" /> | 141 | <NetMapOtherOwnAboveWater value="60, 60, 60, 255" /> |
142 | <NetMapOtherOwnBelowWater value="30, 30, 30, 255" /> | 142 | <NetMapOtherOwnBelowWater value="30, 30, 30, 255" /> |
143 | <NetMapGlyphColorAvatar value="0, 255, 0, 255" /> <!-- Also the color of avatar glyphs on the map --> | ||
144 | <NetMapGlyphColorFriend value="255, 255, 0, 255" /> | ||
143 | 145 | ||
144 | <!-- HELP WINDOW --> | 146 | <!-- HELP WINDOW --> |
145 | <HelpBgColor value="200, 209, 204, 255" /> | 147 | <HelpBgColor value="200, 209, 204, 255" /> |
diff --git a/linden/indra/newview/skins/silver/colors_base.xml b/linden/indra/newview/skins/silver/colors_base.xml index 19b6013..fb46a3f 100644 --- a/linden/indra/newview/skins/silver/colors_base.xml +++ b/linden/indra/newview/skins/silver/colors_base.xml | |||
@@ -1,188 +1,190 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" standalone="yes"?> | 1 | <?xml version="1.0" encoding="utf-8" standalone="yes"?> |
2 | <settings version = "101"> | 2 | <settings version = "101"> |
3 | 3 | ||
4 | <!-- WINDOWS --> | 4 | <!-- WINDOWS --> |
5 | <TitleBarFocusColor value="50, 115, 185, 120" /> <!-- Focused window title bar highlight, no equivalent for unfocused windows --> | 5 | <TitleBarFocusColor value="50, 115, 185, 120" /> <!-- Focused window title bar highlight, no equivalent for unfocused windows --> |
6 | <FloaterFocusBorderColor value="50, 115, 185, 75" /> | 6 | <FloaterFocusBorderColor value="50, 115, 185, 75" /> |
7 | <FloaterUnfocusBorderColor value="110, 110, 110, 60" /> | 7 | <FloaterUnfocusBorderColor value="110, 110, 110, 60" /> |
8 | <FocusBackgroundColor value="165, 180, 200, 245" /> <!-- Background color of focused floaters --> | 8 | <FocusBackgroundColor value="165, 180, 200, 245" /> <!-- Background color of focused floaters --> |
9 | <DefaultBackgroundColor value="165, 180, 200, 128" /> <!-- Background color for unfocused floaters --> | 9 | <DefaultBackgroundColor value="165, 180, 200, 128" /> <!-- Background color for unfocused floaters --> |
10 | <ColorDropShadow value="0, 0, 0, 200" /> <!-- The drop shadow behind windows and menus --> | 10 | <ColorDropShadow value="0, 0, 0, 200" /> <!-- The drop shadow behind windows and menus --> |
11 | <DefaultHighlightDark value="50, 115, 185, 255" /> | 11 | <DefaultHighlightDark value="50, 115, 185, 255" /> |
12 | <DefaultHighlightLight value="50, 115, 185, 255" /> | 12 | <DefaultHighlightLight value="50, 115, 185, 255" /> |
13 | <DefaultShadowDark value="50, 115, 185, 255" /> | 13 | <DefaultShadowDark value="50, 115, 185, 255" /> |
14 | <DefaultShadowLight value="50, 115, 185, 255" /> | 14 | <DefaultShadowLight value="50, 115, 185, 255" /> |
15 | 15 | ||
16 | <!-- LABELS --> | 16 | <!-- LABELS --> |
17 | <LabelDisabledColor value="0, 30, 60, 128" /> | 17 | <LabelDisabledColor value="0, 30, 60, 128" /> |
18 | <LabelSelectedColor value="255, 255, 255, 255" /> | 18 | <LabelSelectedColor value="255, 255, 255, 255" /> |
19 | <LabelSelectedDisabledColor value="164, 190, 237, 128" /> | 19 | <LabelSelectedDisabledColor value="164, 190, 237, 128" /> |
20 | <LabelTextColor value="0, 30, 60, 255" /> | 20 | <LabelTextColor value="0, 30, 60, 255" /> |
21 | 21 | ||
22 | <!-- LOGIN --> | 22 | <!-- LOGIN --> |
23 | <LoginProgressBarBgColor value="255, 255, 255, 255" /> | 23 | <LoginProgressBarBgColor value="255, 255, 255, 255" /> |
24 | <LoginProgressBarFgColor value="255, 255, 255, 255" /> | 24 | <LoginProgressBarFgColor value="255, 255, 255, 255" /> |
25 | <LoginProgressBoxBorderColor value="0, 30, 60, 0" /> | 25 | <LoginProgressBoxBorderColor value="0, 30, 60, 0" /> |
26 | <LoginProgressBoxCenterColor value="0, 0, 0, 200" /> | 26 | <LoginProgressBoxCenterColor value="0, 0, 0, 200" /> |
27 | <LoginProgressBoxShadowColor value="0, 0, 0, 200" /> | 27 | <LoginProgressBoxShadowColor value="0, 0, 0, 200" /> |
28 | <LoginProgressBoxTextColor value="255, 255, 255, 255"/> | 28 | <LoginProgressBoxTextColor value="255, 255, 255, 255"/> |
29 | 29 | ||
30 | <!-- BUTTONS --> | 30 | <!-- BUTTONS --> |
31 | <ButtonLabelColor value="0, 30, 60, 255" /> <!-- Text labels for buttons, like the "OK" text --> | 31 | <ButtonLabelColor value="0, 30, 60, 255" /> <!-- Text labels for buttons, like the "OK" text --> |
32 | <ButtonLabelSelectedColor value="255, 255, 255, 255" /> | 32 | <ButtonLabelSelectedColor value="255, 255, 255, 255" /> |
33 | <ButtonLabelDisabledColor value="0, 30, 60, 128" /> | 33 | <ButtonLabelDisabledColor value="0, 30, 60, 128" /> |
34 | <ButtonLabelSelectedDisabledColor value="0, 30, 60, 128" /> | 34 | <ButtonLabelSelectedDisabledColor value="0, 30, 60, 128" /> |
35 | <ButtonSelectedBgColor value="62, 62, 62, 255" /> | 35 | <ButtonSelectedBgColor value="62, 62, 62, 255" /> |
36 | <ButtonSelectedColor value="255, 255, 255, 255" /> | 36 | <ButtonSelectedColor value="255, 255, 255, 255" /> |
37 | <ButtonUnselectedBgColor value="62, 62, 62, 255" /> | 37 | <ButtonUnselectedBgColor value="62, 62, 62, 255" /> |
38 | <ButtonUnselectedFgColor value="255, 255, 255, 255" /> | 38 | <ButtonUnselectedFgColor value="255, 255, 255, 255" /> |
39 | <ButtonBorderColor value="239, 156, 0, 255" /> | 39 | <ButtonBorderColor value="239, 156, 0, 255" /> |
40 | <ButtonFlashBgColor value="255, 190, 62, 127" /> | 40 | <ButtonFlashBgColor value="255, 190, 62, 127" /> |
41 | <ButtonColor value="255, 255, 255, 255" /> <!-- Blended with button art, usually left as opaque white --> | 41 | <ButtonColor value="255, 255, 255, 255" /> <!-- Blended with button art, usually left as opaque white --> |
42 | <ButtonImageColor value="255, 255, 255, 255" /> <!-- Blended with button art, usually left as opaque white --> | 42 | <ButtonImageColor value="255, 255, 255, 255" /> <!-- Blended with button art, usually left as opaque white --> |
43 | 43 | ||
44 | <!-- SLIDERS --> | 44 | <!-- SLIDERS --> |
45 | <SliderDisabledThumbColor value="0, 0, 0, 255" /> | 45 | <SliderDisabledThumbColor value="0, 0, 0, 255" /> |
46 | <SliderThumbCenterColor value="255, 255, 255, 255" /> | 46 | <SliderThumbCenterColor value="255, 255, 255, 255" /> |
47 | <SliderThumbOutlineColor value="37, 64, 99, 255" /> | 47 | <SliderThumbOutlineColor value="37, 64, 99, 255" /> |
48 | <SliderTrackColor value="37, 64, 99, 255" /> | 48 | <SliderTrackColor value="37, 64, 99, 255" /> |
49 | 49 | ||
50 | <!-- TEXTFIELDS --> | 50 | <!-- TEXTFIELDS --> |
51 | <TextBgFocusColor value="255, 255, 255, 255" /> <!-- Text field background when receiving input (focused) --> | 51 | <TextBgFocusColor value="255, 255, 255, 255" /> <!-- Text field background when receiving input (focused) --> |
52 | <TextBgReadOnlyColor value="255, 255, 255, 140" /> <!-- Text field background when read-only --> | 52 | <TextBgReadOnlyColor value="255, 255, 255, 140" /> <!-- Text field background when read-only --> |
53 | <TextBgWriteableColor value="255, 255, 255, 255" /> <!-- Text field background when not receiving input (unfocused) --> | 53 | <TextBgWriteableColor value="255, 255, 255, 255" /> <!-- Text field background when not receiving input (unfocused) --> |
54 | <TextCursorColor value="0, 0, 0, 255" /> | 54 | <TextCursorColor value="0, 0, 0, 255" /> |
55 | <TextFgColor value="45, 48, 45, 255" /> | 55 | <TextFgColor value="45, 48, 45, 255" /> |
56 | <TextFgReadOnlyColor value="0, 0, 0, 200" /> | 56 | <TextFgReadOnlyColor value="0, 0, 0, 200" /> |
57 | <TextFgTentativeColor value="0, 0, 0, 128" /> | 57 | <TextFgTentativeColor value="0, 0, 0, 128" /> |
58 | <TextEmbeddedItemReadOnlyColor value="58, 147, 242, 255" /> <!-- i.e. About Land name that you don't own --> | 58 | <TextEmbeddedItemReadOnlyColor value="58, 147, 242, 255" /> <!-- i.e. About Land name that you don't own --> |
59 | <TextEmbeddedItemColor value="0, 0, 128, 255" /> | 59 | <TextEmbeddedItemColor value="0, 0, 128, 255" /> |
60 | <TextDefaultColor value="0, 20, 0, 255"/> | 60 | <TextDefaultColor value="0, 20, 0, 255"/> |
61 | 61 | ||
62 | <!-- LISTBOXES --> | 62 | <!-- LISTBOXES --> |
63 | <ScrollBgReadOnlyColor value="255, 255, 255, 140" /> | 63 | <ScrollBgReadOnlyColor value="255, 255, 255, 140" /> |
64 | <ScrollBgWriteableColor value="255, 255, 255, 140" /> | 64 | <ScrollBgWriteableColor value="255, 255, 255, 140" /> |
65 | <ScrollBGStripeColor value="145, 180, 220, 60" /> | 65 | <ScrollBGStripeColor value="145, 180, 220, 60" /> |
66 | <ScrollDisabledColor value="128, 128, 128, 204" /> | 66 | <ScrollDisabledColor value="128, 128, 128, 204" /> |
67 | <ScrollSelectedBGColor value="50, 115, 185, 150" /> | 67 | <ScrollSelectedBGColor value="50, 115, 185, 150" /> |
68 | <ScrollSelectedFGColor value="0, 30, 60, 255" /> <!-- Text color --> | 68 | <ScrollSelectedFGColor value="0, 30, 60, 255" /> <!-- Text color --> |
69 | <ScrollUnselectedColor value="0, 30, 60, 255" /> <!-- Text color --> | 69 | <ScrollUnselectedColor value="0, 30, 60, 255" /> <!-- Text color --> |
70 | <ScrollHighlightedColor value="145, 180, 220, 128" /> <!-- Hover color --> | 70 | <ScrollHighlightedColor value="145, 180, 220, 128" /> <!-- Hover color --> |
71 | <ScrollbarThumbColor value="120, 160, 200, 255" /> | 71 | <ScrollbarThumbColor value="120, 160, 200, 255" /> |
72 | <ScrollbarTrackColor value="183, 202, 220, 255" /> | 72 | <ScrollbarTrackColor value="183, 202, 220, 255" /> |
73 | 73 | ||
74 | <!-- MENUS --> | 74 | <!-- MENUS --> |
75 | <MenuBarBgColor value="185, 200, 220, 230" /> | 75 | <MenuBarBgColor value="185, 200, 220, 230" /> |
76 | <MenuBarGodBgColor value="100, 200, 130, 230" /> | 76 | <MenuBarGodBgColor value="100, 200, 130, 230" /> |
77 | <MenuNonProductionGodBgColor value="100, 200, 130, 230" /> | 77 | <MenuNonProductionGodBgColor value="100, 200, 130, 230" /> |
78 | <MenuNonProductionBgColor value="230, 70, 70, 230" /> | 78 | <MenuNonProductionBgColor value="230, 70, 70, 230" /> |
79 | <MenuDefaultBgColor value="210, 220, 230, 245" /> | 79 | <MenuDefaultBgColor value="210, 220, 230, 245" /> |
80 | <MenuItemDisabledColor value="0, 30, 60, 128" /> <!-- Menu text color; also text color for pie menus and treeviews (like Inventory) --> | 80 | <MenuItemDisabledColor value="0, 30, 60, 128" /> <!-- Menu text color; also text color for pie menus and treeviews (like Inventory) --> |
81 | <MenuItemEnabledColor value="0, 30, 60, 255" /> <!-- Menu text color; also text color for pie menus and treeviews (like Inventory) --> | 81 | <MenuItemEnabledColor value="0, 30, 60, 255" /> <!-- Menu text color; also text color for pie menus and treeviews (like Inventory) --> |
82 | <MenuItemHighlightBgColor value="50, 115, 185, 100" /> | 82 | <MenuItemHighlightBgColor value="50, 115, 185, 100" /> |
83 | <MenuItemHighlightFgColor value="0, 30, 60, 255" /> <!-- Highlighted menu text color; also treeview node selection highlight --> | 83 | <MenuItemHighlightFgColor value="0, 30, 60, 255" /> <!-- Highlighted menu text color; also treeview node selection highlight --> |
84 | <MenuPopupBgColor value="197, 217, 234, 240" /> | 84 | <MenuPopupBgColor value="197, 217, 234, 240" /> |
85 | 85 | ||
86 | <!-- PIE MENUS --> | 86 | <!-- PIE MENUS --> |
87 | <PieMenuBgColor value="118, 156, 201, 230" /> | 87 | <PieMenuBgColor value="118, 156, 201, 230" /> |
88 | <PieMenuLineColor value="255, 255, 255, 60" /> | 88 | <PieMenuLineColor value="255, 255, 255, 60" /> |
89 | <PieMenuSelectedColor value="185, 200, 220, 120" /> | 89 | <PieMenuSelectedColor value="185, 200, 220, 120" /> |
90 | 90 | ||
91 | <!-- TOOLTIPS --> | 91 | <!-- TOOLTIPS --> |
92 | <ToolTipBgColor value="250, 255, 225, 230" /> | 92 | <ToolTipBgColor value="250, 255, 225, 230" /> |
93 | <ToolTipBorderColor value="171, 212, 245, 255" /> | 93 | <ToolTipBorderColor value="171, 212, 245, 255" /> |
94 | <ToolTipTextColor value="0, 0, 0, 255" /> | 94 | <ToolTipTextColor value="0, 0, 0, 255" /> |
95 | 95 | ||
96 | <!-- NOTIFICATION POP-UPS --> | 96 | <!-- NOTIFICATION POP-UPS --> |
97 | <NotifyBoxColor value="170, 210, 255, 240" /> | 97 | <NotifyBoxColor value="170, 210, 255, 240" /> |
98 | <NotifyTextColor value="0, 30, 60, 255" /> | 98 | <NotifyTextColor value="0, 30, 60, 255" /> |
99 | <NotifyCautionBoxColor value="254, 209, 118, 255" /> <!-- the background color of caution permissions prompts --> | 99 | <NotifyCautionBoxColor value="254, 209, 118, 255" /> <!-- the background color of caution permissions prompts --> |
100 | <NotifyCautionWarnColor value="0, 0, 0, 255" /> <!-- the foreground color of the special title text in caution permissions prompts --> | 100 | <NotifyCautionWarnColor value="0, 0, 0, 255" /> <!-- the foreground color of the special title text in caution permissions prompts --> |
101 | <GroupNotifyBoxColor value="170, 210, 255, 240" /> | 101 | <GroupNotifyBoxColor value="170, 210, 255, 240" /> |
102 | <GroupNotifyTextColor value="0, 30, 60, 255" /> | 102 | <GroupNotifyTextColor value="0, 30, 60, 255" /> |
103 | 103 | ||
104 | <!-- CHAT AND IM HISTORY TEXTBOX COLORS --> | 104 | <!-- CHAT AND IM HISTORY TEXTBOX COLORS --> |
105 | <ChatHistoryBgColor value="0, 30, 80, 200" /> | 105 | <ChatHistoryBgColor value="0, 30, 80, 200" /> |
106 | <ChatHistoryTextColor value="255, 255, 255, 255" /> | 106 | <ChatHistoryTextColor value="255, 255, 255, 255" /> |
107 | <IMHistoryBgColor value="0, 30, 80, 200" /> | 107 | <IMHistoryBgColor value="0, 30, 80, 200" /> |
108 | <IMHistoryTextColor value="255, 255, 255, 255" /> | 108 | <IMHistoryTextColor value="255, 255, 255, 255" /> |
109 | 109 | ||
110 | <!-- IN-WORLD SELECTION --> | 110 | <!-- IN-WORLD SELECTION --> |
111 | <SilhouetteParentColor value="255, 255, 0, 255" /> | 111 | <SilhouetteParentColor value="255, 255, 0, 255" /> |
112 | <SilhouetteChildColor value="32, 106, 196, 255" /> | 112 | <SilhouetteChildColor value="32, 106, 196, 255" /> |
113 | <HighlightParentColor value="171, 212, 245, 255" /> | 113 | <HighlightParentColor value="171, 212, 245, 255" /> |
114 | <HighlightChildColor value="171, 212, 245, 255" /> | 114 | <HighlightChildColor value="171, 212, 245, 255" /> |
115 | <HighlightInspectColor value="255, 0, 255, 255" /> | 115 | <HighlightInspectColor value="255, 0, 255, 255" /> |
116 | 116 | ||
117 | <!-- EDIT MODE GRID --> | 117 | <!-- EDIT MODE GRID --> |
118 | <GridFocusPointColor value="255, 255, 255, 128" /> | 118 | <GridFocusPointColor value="255, 255, 255, 128" /> |
119 | <GridlineColor value="255, 255, 255, 255" /> | 119 | <GridlineColor value="255, 255, 255, 255" /> |
120 | <GridlineBGColor value="235, 235, 255, 200" /> | 120 | <GridlineBGColor value="235, 235, 255, 200" /> |
121 | <GridlineShadowColor value="0, 0, 0, 80" /> | 121 | <GridlineShadowColor value="0, 0, 0, 80" /> |
122 | 122 | ||
123 | <!-- PROPERTY LINES --> | 123 | <!-- PROPERTY LINES --> |
124 | <PropertyColorAvail value="0, 0, 0, 0" /> | 124 | <PropertyColorAvail value="0, 0, 0, 0" /> |
125 | <PropertyColorGroup value="0, 184, 184, 102" /> | 125 | <PropertyColorGroup value="0, 184, 184, 102" /> |
126 | <PropertyColorOther value="255, 0, 0, 102" /> | 126 | <PropertyColorOther value="255, 0, 0, 102" /> |
127 | <PropertyColorSelf value="0, 255, 0, 102" /> | 127 | <PropertyColorSelf value="0, 255, 0, 102" /> |
128 | <PropertyColorForSale value="255, 128, 0, 102" /> | 128 | <PropertyColorForSale value="255, 128, 0, 102" /> |
129 | <PropertyColorAuction value="128, 0, 255, 102" /> <!-- Match the color on the world map --> | 129 | <PropertyColorAuction value="128, 0, 255, 102" /> <!-- Match the color on the world map --> |
130 | 130 | ||
131 | <!-- Icon Enable/Disable --> | 131 | <!-- Icon Enable/Disable --> |
132 | <IconEnabledColor value="255, 255, 255, 255"/> | 132 | <IconEnabledColor value="255, 255, 255, 255"/> |
133 | <IconDisabledColor value="147, 169, 213, 200"/> | 133 | <IconDisabledColor value="147, 169, 213, 200"/> |
134 | 134 | ||
135 | <!-- MINI-MAP --> | 135 | <!-- MINI-MAP --> |
136 | <NetMapBackgroundColor value="0, 0, 0, 77" /> | 136 | <NetMapBackgroundColor value="0, 0, 0, 77" /> |
137 | <NetMapYouOwnAboveWater value="0, 255, 255, 255" /> | 137 | <NetMapYouOwnAboveWater value="0, 255, 255, 255" /> |
138 | <NetMapYouOwnBelowWater value="0, 200, 200, 255" /> | 138 | <NetMapYouOwnBelowWater value="0, 200, 200, 255" /> |
139 | <NetMapGroupOwnAboveWater value="255, 0, 255, 255" /> | 139 | <NetMapGroupOwnAboveWater value="255, 0, 255, 255" /> |
140 | <NetMapGroupOwnBelowWater value="200, 0, 200, 255" /> | 140 | <NetMapGroupOwnBelowWater value="200, 0, 200, 255" /> |
141 | <NetMapOtherOwnAboveWater value="60, 60, 60, 255" /> | 141 | <NetMapOtherOwnAboveWater value="60, 60, 60, 255" /> |
142 | <NetMapOtherOwnBelowWater value="30, 30, 30, 255" /> | 142 | <NetMapOtherOwnBelowWater value="30, 30, 30, 255" /> |
143 | 143 | <NetMapGlyphColorAvatar value="0, 255, 0, 255" /> <!-- Also the color of avatar glyphs on the map --> | |
144 | <!-- HELP WINDOW --> | 144 | <NetMapGlyphColorFriend value="255, 255, 0, 255" /> |
145 | <HelpBgColor value="200, 209, 204, 255" /> | 145 | |
146 | <HelpFgColor value="0, 0, 0, 255" /> | 146 | <!-- HELP WINDOW --> |
147 | <HelpScrollTrackColor value="0, 0, 0, 255" /> | 147 | <HelpBgColor value="200, 209, 204, 255" /> |
148 | <HelpScrollThumbColor value="255, 255, 255, 255" /> | 148 | <HelpFgColor value="0, 0, 0, 255" /> |
149 | <HelpScrollHighlightColor value="115, 132, 155, 255" /> | 149 | <HelpScrollTrackColor value="0, 0, 0, 255" /> |
150 | <HelpScrollShadowColor value="0, 0, 0, 255" /> | 150 | <HelpScrollThumbColor value="255, 255, 255, 255" /> |
151 | 151 | <HelpScrollHighlightColor value="115, 132, 155, 255" /> | |
152 | <!-- MISC --> | 152 | <HelpScrollShadowColor value="0, 0, 0, 255" /> |
153 | <AvatarNameColor value="251, 175, 93, 255" /> <!-- Text color of avatar nametags --> | 153 | |
154 | <FocusColor value="239, 156, 0, 255" /> <!-- Color of the glow around UI controls with keyboard focus --> | 154 | <!-- MISC --> |
155 | <FloaterButtonImageColor value="255, 255, 255, 255" /> <!-- The floater buttons (like the close box) are white images that receive this color. --> | 155 | <AvatarNameColor value="251, 175, 93, 255" /> <!-- Text color of avatar nametags --> |
156 | <ButtonCautionImageColor value="255, 255, 255, 255" /> <!-- Match the caution dialog buttons to the default --> | 156 | <FocusColor value="239, 156, 0, 255" /> <!-- Color of the glow around UI controls with keyboard focus --> |
157 | <HealthTextColor value="255, 255, 255, 255" /> | 157 | <FloaterButtonImageColor value="255, 255, 255, 255" /> <!-- The floater buttons (like the close box) are white images that receive this color. --> |
158 | <MapAutopilotColor value="255, 128, 0, 255" /> | 158 | <ButtonCautionImageColor value="255, 255, 255, 255" /> <!-- Match the caution dialog buttons to the default --> |
159 | <ContextSilhouetteColor value="239, 156, 0, 255" /> <!-- For "context" highlighting, i.e. pie menu --> | 159 | <HealthTextColor value="255, 255, 255, 255" /> |
160 | <ScriptBgReadOnlyColor value="180, 180, 180, 255" /> | 160 | <MapAutopilotColor value="255, 128, 0, 255" /> |
161 | <ParcelTextColor value="40, 40, 90, 255" /> <!-- Parcel name on menu bar, normal state --> | 161 | <ContextSilhouetteColor value="239, 156, 0, 255" /> <!-- For "context" highlighting, i.e. pie menu --> |
162 | <ParcelHoverColor value="70, 70, 100, 255" /> <!-- Parcel name on menu bar, hover state --> | 162 | <ScriptBgReadOnlyColor value="180, 180, 180, 255" /> |
163 | <TimeTextColor value="0, 30, 60, 255" /> <!-- SL Time on menu bar --> | 163 | <ParcelTextColor value="40, 40, 90, 255" /> <!-- Parcel name on menu bar, normal state --> |
164 | <BalanceTextColor value="0, 100, 40, 255" /> <!-- Linden dollar balance on menu bar --> | 164 | <ParcelHoverColor value="70, 70, 100, 255" /> <!-- Parcel name on menu bar, hover state --> |
165 | <HealthTextColor value="110, 15, 15, 255" /> <!-- Damage meter text on menu bar --> | 165 | <TimeTextColor value="0, 30, 60, 255" /> <!-- SL Time on menu bar --> |
166 | <GroupOverTierColor value="110, 15, 15, 255" /> <!-- Warning text in Group Info window --> | 166 | <BalanceTextColor value="0, 100, 40, 255" /> <!-- Linden dollar balance on menu bar --> |
167 | <FilterBackgroundColor value="75, 75, 150, 180" /> <!-- Matching region of Inventory search text --> | 167 | <HealthTextColor value="110, 15, 15, 255" /> <!-- Damage meter text on menu bar --> |
168 | <FilterTextColor value="255, 200, 70, 255" /> | 168 | <GroupOverTierColor value="110, 15, 15, 255" /> <!-- Warning text in Group Info window --> |
169 | <InventoryItemSuffixColor value="120, 70, 55, 255"/> | 169 | <FilterBackgroundColor value="75, 75, 150, 180" /> <!-- Matching region of Inventory search text --> |
170 | <InventorySearchStatusColor value="0, 0, 0, 255" /> | 170 | <FilterTextColor value="255, 200, 70, 255" /> |
171 | <ConsoleBackground value="0, 0, 0, 255" /> | 171 | <InventoryItemSuffixColor value="120, 70, 55, 255"/> |
172 | <FolderViewLoadingMessageTextColor value="240, 165, 90, 255"/> | 172 | <InventorySearchStatusColor value="0, 0, 0, 255" /> |
173 | <InventoryBackgroundColor value="255, 255, 255, 80"/> | 173 | <ConsoleBackground value="0, 0, 0, 255" /> |
174 | 174 | <FolderViewLoadingMessageTextColor value="240, 165, 90, 255"/> | |
175 | <!-- Alert box colors --> | 175 | <InventoryBackgroundColor value="255, 255, 255, 80"/> |
176 | <AlertBoxColor value="165, 180, 200, 245"/> | 176 | |
177 | <AlertTextColor value="0, 30, 60, 255"/> | 177 | <!-- Alert box colors --> |
178 | <AlertCautionBoxColor value="254, 209, 118, 255"/> <!-- Background color of caution alerts --> | 178 | <AlertBoxColor value="165, 180, 200, 245"/> |
179 | <AlertCautionTextColor value="0, 0, 0, 255"/> <!-- Foreground color of the special title text in caution alerts --> | 179 | <AlertTextColor value="0, 30, 60, 255"/> |
180 | 180 | <AlertCautionBoxColor value="254, 209, 118, 255"/> <!-- Background color of caution alerts --> | |
181 | <!-- Multi sliders, as in the sky animation setting --> | 181 | <AlertCautionTextColor value="0, 0, 0, 255"/> <!-- Foreground color of the special title text in caution alerts --> |
182 | <MultiSliderDisabledThumbColor value="0, 0, 0, 255"/> | 182 | |
183 | <MultiSliderThumbCenterColor value="183, 184, 188, 255"/> | 183 | <!-- Multi sliders, as in the sky animation setting --> |
184 | <MultiSliderThumbOutlineColor value="0, 0, 0, 255"/> | 184 | <MultiSliderDisabledThumbColor value="0, 0, 0, 255"/> |
185 | <MultiSliderTrackColor value="30, 30, 30, 255"/> | 185 | <MultiSliderThumbCenterColor value="183, 184, 188, 255"/> |
186 | <MultiSliderThumbCenterSelectedColor value="255, 50, 50, 255"/> | 186 | <MultiSliderThumbOutlineColor value="0, 0, 0, 255"/> |
187 | <MultiSliderTriangleColor value="255, 255, 50, 255"/> | 187 | <MultiSliderTrackColor value="30, 30, 30, 255"/> |
188 | </settings> | 188 | <MultiSliderThumbCenterSelectedColor value="255, 50, 50, 255"/> |
189 | <MultiSliderTriangleColor value="255, 255, 50, 255"/> | ||
190 | </settings> | ||