Hi there,
My HTC home plugin is branded by tmobile the same goes for the cube.
I don't like the pink color and would like to have the default colors of htc.
Is There a way to do this?
Al i could find on the forum where skins but i bet the colors are stored in files or registry settings.
hope to get some information.
flash a new ROM! SPL unlock your device then the world's your oyster, more or less ..
see here -> http://forum.xda-developers.com/showthread.php?t=355730
Im alittle new to the mobile device side of things, but i am pretty tech savvy.
I want to know how i can change the color of the very top and bottom bar on my verizon touch pro screen. I have already installed a very groovy black custom theme, but anything below the touch flo bar doesnt change.
I can go into setting>today and change the main theme but i do not have a black one like i want. All that are in the list are default windows mobile themes in blue and green. Currently i have my TP set to the vzw theme and its a very handsome burgundy, but i would really love to see something more black. Like.....Grimm reaper black......darth vader black.......skeletor and such...
Im assuming i need a windows mobile theme and not a touch flo theme to do this, is that correct? if so, could i find one that darth vader would want on his mobile device?
Thanks,
*Darth Grouper*
Aww, it was just a windows mobile theme needed. Darth Vader would be proud...
If you only want to change the colors, and not the themes, get a registry editor.
Browse the phone's registry to HKLM\Software\Microsoft\Color and change the "BaseHue" value. You can either tool around with different values to see different colors appear with about a 1 second delay.
Protip: 1 = black.
Hi. This is my first post.
I have a problem with my vision making any black on white display a real strain on my eyes.
With my IPhone I am able to invert colors. Is this possible using my acer A500 tab running honeycomb.
I also find instapaper for my iPhone useful as it gives a white on black option.
I thank you in advance for any help.
Don't know about color inversion but there's an app called 'screen filter' that displays a transparent grey filter to the screen. I use it for night time reading to avoid eye strain. Might wanna check it out.
Sent from my HTC Desire using xda premium
I will certainly give screen filter a go.
Any more ideas?
Whenever I use an XML template then the background never shows up. Why? I get the correct fonts and colors just a transparent background?
Sent from my Galaxy S II
Read the mClock skin thread, this question has been asked at least 20 times that I've seen.
You need to open up the xml and see where the background image is supposed to be. Either put the background image there, or change the xml to reflect where you want to store the image.
Sent from my Evo + MIUI using Tapatalk!
Many thanks
Sent from my Galaxy S II
It looks like AT&T removed the HTC Titan default accent theme. Is there anyway to get this factory theme back?
Would also like to know this
Sent from my PI39100 using XDA Windows Phone 7 App
I have the HTC green on my radar. Its nicer than the washed out lime color
Sent from my HTC Radar 4G using XDA Windows Phone 7 App
There should be the HTC accent which is the HTC Green and Grey for at least TMO-AT customers.
Moved to HTC Titan General
This is a device specific question. Not in the WP7 dev section please. Use the read before posting for guidelines.
Take it easy
O_G
The HTC green really looks good. I can't believe At&t removed it.
Sent from my HTC TITAN using XDA Windows Phone 7 App
Does anyone know the specific RGB values used for that green color?
Try this Code. FF69B40F
I would really like to get the accent color changed and find a way to get the 2 XAML files onto the device to enable the custom accent color in 3rd party apps.
sorry, I've no solution for it.
tai4de2 said:
I managed to get the accent color changed but I have not found a way to get the 2 XAML files onto the device yet to enable the custom accent color in 3rd party apps.
Click to expand...
Click to collapse
How'd you get the accent color changed period?
Diguto said:
Try this Code. FF69B40F
Click to expand...
Click to collapse
troll
=).....
bump! anything new on this?
Why did you think the most recent poster was a troll?
69B40F is in fact the RGB code for that shade of green -- you can try it yourself in paint.
tai4de2 said:
Why did you think the most recent poster was a troll?
69B40F is in fact the RGB code for that shade of green -- you can try it yourself in paint.
Click to expand...
Click to collapse
He thinks you are trolling because there isn't an option / anyway to get those code in the registry of the Titan
We are interop-locked so we can't install anything like registry editor or advanced config in.
tai4de2 said:
Why did you think the most recent poster was a troll?
69B40F is in fact the RGB code for that shade of green -- you can try it yourself in paint.
Click to expand...
Click to collapse
holy crap, i honestly entered this into photoshop last time it was pink! now i tried it again and its green, wtf??
well thanks for the color code, now to get it on the device is another endeavor.
Edit:
ok this is what i replied to
FF69B40F
Click to expand...
Click to collapse
that is pink
Pink. vs green is probably a byte ordering issue.
"FF69B40F" is intended to break down as
Alpha: 0xff (fully opaque)
Red: 0x69
Green: 0xb4
Blue: 0x0f
If you entered it into a program that was expecting a different byte order, you could get pink, e.g.,
Red: 0xff
Green: 0x69
Blue: 0xb4
Alpha: 0x0f
...would in fact be transparent pink.