WP7 Accent Colors - Windows Phone 7 Development and Hacking

So with all the hacking going on, surely someone by now has figured out Custom Accent colors. The ones included with the devices are pretty disappointing and it'd be cool to add our own, even though its a stupid little thing.
Has anyone here successfully nailed it down yet?

owenw said:
So with all the hacking going on, surely someone by now has figured out Custom Accent colors. The ones included with the devices are pretty disappointing and it'd be cool to add our own, even though its a stupid little thing.
Has anyone here successfully nailed it down yet?
Click to expand...
Click to collapse
http://windowsphone7central.com/new..._chevronwp7s_second_homebrew_app-12-24-10.php
Still waiting on this from the Chevron team!

If it helps, looks like these are the registry settings (replace 0409 with your Culture Identifier):
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisplayName\0409]
"0"="Green" ; 0 - Green
"1"="Red" ; 1 - Red
"2"="Blue" ; 2 - Blue
"3"="Orange" ; 3 - Yellow ; Id 4 - Used by OEMs
"5"="Pink" ; 5 - Pink ; Id 4 - Used by OEMs
"6"="Brown" ; 6 - Brown
"7"="Lime" ; 7 - Lime
"8"="Teal" ; 8 - Teal
"9"="Purple" ; 9 - Purple
"10"="Magenta" ; 10 - Magenta
and change the color values here (0=light, 1=dark)
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\0\Accents]
"0"=dword:FF339933 ; AccentId ;0 - Green
"1"=dword:FFE51400 ; AccentId ;1 - Red
"2"=dword:FF1BA1E2 ; AccentId ;2 - Blue
"3"=dword:FFF09609 ; AccentId ;3 - Yellow ;Id 4 - Used by OEMs
"5"=dword:FFE671B8 ; AccentId ;5 - Pink ;Id 4 - Used by OEMS
"6"=dword:FFA05000 ; AccentId ;6 - Brown
"7"=dword:FF8CBF26 ; AccentId ;7 - Lime
"8"=dword:FF00ABA9 ; AccentId ;8 - Teal
"9"=dword:FFA200FF ; AccentId ;9 - Purple
"10"=dword:FFFF0097 ; AccentId ;10 - Magenta
regards,
-tobias

kuerbis2 said:
If it helps, looks like these are the registry settings (replace 0409 with your Culture Identifier):
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\AccentsDisplayName\0409]
"0"="Green" ; 0 - Green
"1"="Red" ; 1 - Red
"2"="Blue" ; 2 - Blue
"3"="Orange" ; 3 - Yellow ; Id 4 - Used by OEMs
"5"="Pink" ; 5 - Pink ; Id 4 - Used by OEMs
"6"="Brown" ; 6 - Brown
"7"="Lime" ; 7 - Lime
"8"="Teal" ; 8 - Teal
"9"="Purple" ; 9 - Purple
"10"="Magenta" ; 10 - Magenta
and change the color values here (0=light, 1=dark)
[HKEY_LOCAL_MACHINE\ControlPanel\Themes\0\Accents]
"0"=dword:FF339933 ; AccentId ;0 - Green
"1"=dword:FFE51400 ; AccentId ;1 - Red
"2"=dword:FF1BA1E2 ; AccentId ;2 - Blue
"3"=dword:FFF09609 ; AccentId ;3 - Yellow ;Id 4 - Used by OEMs
"5"=dword:FFE671B8 ; AccentId ;5 - Pink ;Id 4 - Used by OEMS
"6"=dword:FFA05000 ; AccentId ;6 - Brown
"7"=dword:FF8CBF26 ; AccentId ;7 - Lime
"8"=dword:FF00ABA9 ; AccentId ;8 - Teal
"9"=dword:FFA200FF ; AccentId ;9 - Purple
"10"=dword:FFFF0097 ; AccentId ;10 - Magenta
regards,
-tobias
Click to expand...
Click to collapse
Wow, thanks for this. I guess its time to wait for real registry access now..

I may have some time to finish my registry app. However, without high privileges writing is not possible.
I've never played with phone specific drivers. Anybody know wich dll to use to with HTC?

I'd be keen to see that, please do share!

Actually, even though HTC DLL I don't have write access to this part of the registry.
You can try the lastest version of my Registry App here: http://bit.ly/WPRegistry.
On HTC, it tries to update registry value. I try to do that only on HTC device but I've never tested it on other device (please give me feedback).
Of course: Use it at your own risk! Playing with registry can be dangerous.

(nico) said:
Actually, even though HTC DLL I don't have write access to this part of the registry.
You can try the lastest version of my Registry App here: http://bit.ly/WPRegistry.
On HTC, it tries to update registry value. I try to do that only on HTC device but I've never tested it on other device (please give me feedback).
Of course: Use it at your own risk! Playing with registry can be dangerous.
Click to expand...
Click to collapse
Big thanks for that! I have a HTC Trophy and I can definitely read, but still can't write. Did you get write access at all with your device?
It's such a tease looking at those accent values and wanting to change them!

now that looks promising. would love to change accent colors. I hope we get some privilege rights to edit registry soon

As I said earlier, this part of the registry is not writable. Even through HTC DLL (more info here from n0psl3d)
We have to find another way in.

diboze said:
now that looks promising. would love to change accent colors. I hope we get some privilege rights to edit registry soon
Click to expand...
Click to collapse
The colors included with the phone are terrible. For some reason my carrier added red as their OEM color too O_O

(nico) said:
As I said earlier, this part of the registry is not writable. Even through HTC DLL.
We have to find another way in.
Click to expand...
Click to collapse
Thanks Nico

it amazingly reads on the dell venue pro not sure if I can write though

That's expected. To read I've written my own lib using native API and COM bridge. I only use HTC DLL to do write stuff.
On your Dell phone, the "Ok" button is supposed to be disabled if the HTC DLL don't work.

(nico) said:
That's expected. To read I've written my own lib using native API and COM bridge. I only use HTC DLL to do write stuff.
On your Dell phone, the "Ok" button is supposed to be disabled if the HTC DLL don't work.
Click to expand...
Click to collapse
you're right its disabled

Nice. This means that my device detection actually works

(nico) said:
Nice. This means that my device detection actually works
Click to expand...
Click to collapse
Are any of the libraries written by Jmorrill of any use to you? Would that help gain write access?

No, and I don't think so.
Jeremiah wrote a lib for Socket. I've written something similar for registry access, but we're still limited by permission given by the OS.

A tale of caution for proud owners of LG's: if you
use the registry editor included in the MFG app to add the accent #4 within the display name key
let the screen time out before setting the corresponding accent color values
recieve and read an sms before trying to return (in case lock screen isn't enough to push MFG out of the way)
you might end up with a MFG app that crashes upon launching and incomplete theme entries, or alternatively a corrupted registry value, which results in the theme subsection of settings to also crash on launch.
So.. there. Be careful. Wish SMS backup was here already..
Oh. Actually all third-party apps fail to launch when theme keys can't be enumerated. This is sort of a bother..

Has anyone find a easy way to add your own colors? Like the chevron ring tone xap or something.

Related

Samsung Clock

This clock was hacked from SAMSUNG i718 pleas see attached pic
The clock has 5 types of clocks (digital, analog, black white …..)
Pleas See Attached Zip Folder
Clock.dll +text File For Registry Changes
Copy The Clock.dll To Windows Folder
Add The Registry Keys Like In The Text File
Soft Reset And You Will Fined Samsung Clock At Settings>today>items
WORKS VERY WELL ON MY HTC TyTN with WM6.1 professional
Br
Edward
Does this lil hack include an alarm clock as well?? I had a Cingular Blackhjack for a while and I LOVED the alarm on that device, it had 9 different times it could go off, with or without snooze.. It did the job very well.. Thanks!
tiptoekirk said:
Does this lil hack include an alarm clock as well?? I had a Cingular Blackhjack for a while and I LOVED the alarm on that device, it had 9 different times it could go off, with or without snooze.. It did the job very well.. Thanks!
Click to expand...
Click to collapse
THIS CLOCK USES THE WINDOWS ALARM CLOCK (WITH 3 DIFFERENT TIMES)
EDWARD
faint
i want a sumsung cpu overclock soft
Samsung Clock cab
I made a cab for you guys, enjoy.
I'll update it when I can find the reg setting to remove the scroll from that particular Today Item, I think it'll look beter.
edited - I changed type = 5 which disables the scroll for that Today item.
Thanks for posting edward-riko!
Dr Puttingham said:
I made a cab for you guys, enjoy.
I'll update it when I can find the reg setting to remove the scroll from that particular Today Item, I think it'll look beter.
edited - I changed type = 5 which disables the scroll for that Today item.
Thanks for posting edward-riko!
Click to expand...
Click to collapse
Thank you kind sir.
Dr Puttingham said:
I made a cab for you guys, enjoy.
I'll update it when I can find the reg setting to remove the scroll from that particular Today Item, I think it'll look beter.
edited - I changed type = 5 which disables the scroll for that Today item.
Thanks for posting edward-riko!
Click to expand...
Click to collapse
The credit for this clock is to SERGi_k from:
_http://4pda.ru/forum/index.php?showtopic=34470&st=2010
BR
Edward
Now we just need Schaps or someone else with the knowledge to change the color in the dll from Black to the Schap's purple...
and also change from military to 12 hour time...
Dr Puttingham said:
Now we just need Schaps or someone else with the knowledge to change the color in the dll from Black to the Schap's purple...
and also change from military to 12 hour time...
Click to expand...
Click to collapse
Maybe I don´t get you right.., but you can change from 24 to 12 am/pm hours display in options. To open options you have to keep the touchscreen pressed for a second os so.
pronor
pronor said:
Maybe I don´t get you right.., but you can change from 24 to 12 am/pm hours display in options. To open options you have to keep the touchscreen pressed for a second os so.
pronor
Click to expand...
Click to collapse
Wow, can't believe I missed that!
thanks!
This would be great app for me if the date format would be indicated the long way... "dddd dd.MMMM.yy"... Can it be changed?
Great little application!
Thanks to all.
Cheers
Sane said:
This would be great app for me if the date format would be indicated the long way... "dddd dd.MMMM.yy"... Can it be changed?
Click to expand...
Click to collapse
In agree, as I would also like that.
But I am sure that the date format is linked to your Regional settings. - I may be wrong though.
If you look through the threads you can remove the time from the top bar - no use duplicating the time.
Edit 1: I left the battery incicator in the top bar.
Edit 2: I found the HTC Home cab. and have now installed that instead. I now have the clock, weather and launcher installed on Sleuth's ROM. It has slowed a little but works super for my applications. Still faster than JJ's latest.
basilrsa said:
In agree, as I would also like that.
But I am sure that the date forat is linked to your Regional settings. - I may be wrong though.
If you look through the threads you can remove the time from the top bar - no use duplicating the time.
Click to expand...
Click to collapse
Long date format - here: HKEY_LOCAL_MACHINE\nls\overrides, SLDte = for example, "dddd, dd MMMM yyyy". By Regional Settings change you do with pre-defined list of formats, but that can be changed manually after.
To remove the time from top bar... I'm not sure that make sense: time will be not visible in other apps too, where Today's clock we'll don't have... but - it is here: HKEY_LOCAL_MACHINE\Software\Microsoft\Shell, set ShowTitleBarClock to 0x0 (0); and TBOpt - to 0x0 (0) too (otherwise will be shown the Battery Icon instead).
You guys might want to try the program rlToday, it can do these and more.
om-by said:
Long date format - here: HKEY_LOCAL_MACHINE\nls\overrides, SLDte = for example, "dddd, dd MMMM yyyy". By Regional Settings change you do with pre-defined list of formats, but that can be changed manually after.
To remove the time from top bar... I'm not sure that make sense: time will be not visible in other apps too, where Today's clock we'll don't have... but - it is here: HKEY_LOCAL_MACHINE\Software\Microsoft\Shell, set ShowTitleBarClock to 0x0 (0); and TBOpt - to 0x0 (0) too (otherwise will be shown the Battery Icon instead).
Click to expand...
Click to collapse
I have my date displayed like this, but the hack doesent seem to affect the Samsung Clock...
Anyone got ideas how to change the date format on the Samsung Clock?
Sane said:
I have my date displayed like this, but the hack doesent seem to affect the Samsung Clock...
Anyone got ideas how to change the date format on the Samsung Clock?
Click to expand...
Click to collapse
Hi,
try the HKEY_LOCAL_MACHINE\nls\overrides\SSDte Key. This key should be already there and if you do changes there it affects the displayed date left of the Samsung Clock - problem is - you don´t have enough space for the long date.
pronor said:
Hi,
problem is - you don´t have enough space for the long date.
Click to expand...
Click to collapse
Thats true...
edward-riko said:
This clock was hacked from SAMSUNG i718 pleas see attached pic
The clock has 5 types of clocks (digital, analog, black white …..)
Pleas See Attached Zip Folder
Clock.dll +text File For Registry Changes
Copy The Clock.dll To Windows Folder
Add The Registry Keys Like In The Text File
Soft Reset And You Will Fined Samsung Clock At Settings>today>items
WORKS VERY WELL ON MY HTC TyTN with WM6 LVSW RUS 3.30.3.4
Br
Edward
Click to expand...
Click to collapse
very nice,
thx
Will this clock work on wm5 dopod 838 pro thanks

[APPS] Black Dialer

For New Topaz Grey Dialer HD + Diamond 2 go here
could you make it blacker..
yeh I agree
Panosha is back
Panosha is back! Thank guy!
does it work in landscape mode as well?
hausen said:
does it work in landscape mode as well?
Click to expand...
Click to collapse
No, is only portrait for now.
Great work, looks much nicer then the original !!!
Thanks for this upgrade
I think that the touchpad that pops up to insert sim's pin at start-up was very nice, so do you think could be possible have one like that to dial?
great job ....
i have a small request may be you can manage ....
is it possible to have exactly this in black but to have the grey bar up to the dialer ( when the dialed number you are taping appears) bigger or increase the size of the numbers to see it better and to mek difference with the already dialed numbers below .... it will be great .....
Where does the quick launch bar come from at the top and also the coloured battery meter?
http://soft.photoracer.net/docs/wktask_en.html
ArielBattery2.zip
I made some changes for grey background.
Is it possible to have it in french????
If you give me the maping of letters. (PM please).
Hey panosha
what is the hex code you have used for the black color of the dialing PAD
and for the grey background??
Thks in advance
Modifying the ugly green highlight seen in post 1
Hey guys
in order to modify this, go to the following registry path:
HKLM \ Software \ HTC \ PHONE\highlightColor = xxxxxx (hex) or xxxxxxx (dec)
You can find the list of HTML color codes and names here
http://www.computerhope.com/htmcolor.htm
The values are in hex
Enjoy
BigDede said:
Hey panosha
what is the hex code you have used for the black color of the dialing PAD
and for the grey background??
Thks in advance
Click to expand...
Click to collapse
There is no hex code, just icons.
Thanks dude this is definitely a very cool improvement over that white very average dialer.
Well done.
May I use EN version on an FR(ench) HTC, without bug or issues ?
Is localization only for labels language, this is OK.
Thanks for your answer

[win32] API - New Sense interface Look 'n Feel V1.6.4 (01/28/11)

I have created a win32 API for C++ that mimics HTC's Sense UI Look 'n Feel... More informations on my website: charlie-soft.com
DOCUMENTATION : http://charlie-soft.com/Software/Manila_SDK/html/
This SDK is designed for speed: .NET applications are usually very slow to load and not fluid. I use some tricks to improve speed, like drawing only area having changes, scrolling without backbuffer or creating textures for text (GDI text drawing was slower…).
What’s in the box:
PNG resources for VGA/WVGA. They can be easily modified. SDK will resize automatically the resources if your device has a smaller (or higher) resolution!
Design your app for VGA, the SDK will adjust the layout for other resolutions!
Full Finger Control.
Source files (.cpp and .h) of library.
Source files of example.
Class:
MyEditControl: Edit box with different width. Easy get and set text. SIP detection: scroll Edit area.
MyItem: Button (3 types), checkboxes and switch (TripleState!). Event on click, visibility and state can be changed/get easily.
MyPanel : This element is not visible but is used to bring together elements. This element can have a title and dotted separator between each element.
ChildSection : Contains a subsection which is displayed with a sliding effect.
MyLabel: Print text with different font and color.
MyPictureBox: To print image (png, jpg, bmp, gif…)
MySelector: Like the HTML select. Scroll screen if list is out of screen (see video below).
Section: A section is a panel which can be scrolled up/down. It contains the different elements.
MessageBoxSense: Four type of messagebox: info, Ok/Cancel, Abort/Retry and Yes/No.
MySlider: A simple slider of any size... The min and max values can be changed easily, as the cursor position.
Change log
V1.6.4
Added the possibility of multilines in edit control
V1.6.3
Added possibility to add picture to slider of ChildSection...[bug solved]
Explorer bug solved
V1.6.2
Added an event when user click on screen...
V1.6.1
Memory usage improved
V1.6
Loading of image is now safe (use video memory by default but if problems use device memory)
File Explorer
Icons
Speed and memory improvement
V1.5
just add possibility to change color of text for hover and selected...
Minor bug changes:
items out of screen no longer try to redraw
text of items recompute their size when changing
background color is correctly changed
The SDK is now multi thread safe!
Add the possibility to right clicks (long press)
Add the possibility to hook windows message (WM_ACTIVATE for example)
Add the possibility to have a bottom bar.
Add the possibility to have a background image (landscape and portrait).
If the app is allready started, close the new instance and show the previous one.
MySelector can be scrolled if the list is too long.
Text is now printed with alpha transparency.
Compatible with any character (hebrew, vietnamese...).
MyPictureBox can now be stretched.
Memory usage reduced.
V1.4
Minor bugs fixed
Add the possibility to show MessageBox without a main application.
V1.3
Background can be transparent ! (see this app for demo)
Native drawing (DirectDraw was too slow in landscape)
Slider can have a force feedback (see this app for demo)
V1.2
MySlider added
drawing process rewrited: less redraw->less computation->less CPU utilization -> battery consumption reduced
Loading optimisation
The layout is now independent of screen resolution!
top taskbar is occassionally cleared [fixed]
White screen, touching the panel brings it back [fixed]
landscape items position incorrect [fixed]
V1.1
landscape compatible
Abort/Retry added to MessageBoxSense
TripleState Checkboxes and OnOffItems added
FAQ
is QVGA resolution supported?
Yes, SDK will find the correct resolution and select the appropriate resource resolution. The SDK will delete the other resources...
have you planned to extend MessageBox types to Abort/Retry?
Yes, to create one:
MessageBoxSense::show(L"Hello",L"Try again ?", MESSAGE_ABORTRETRY);
is this landscape compatible?
Yes but having refresh rate issue. Seems to be a DirectDraw problem (S2U2 was subject to the same issue...)
If someone know how to solve this problem, send me a message !
Back button too slow.
You can change the speed anim using this function: changeSpeed(double nbMilisecond)
why aren't you including some TripleState Checkboxes and OnOffItems ?
Both are now included:
new MyItem(1,5,15,ITEM_IS_CHECKBOX,ITEM_THIRD_STATE,L"My third checkbox (Third state)");
Other apps
Wake on Wan is a new app which use this SDK. Sources are available!
Quick shutdown is a software which use this SDK too. It can turn off, restart or set the phone in sleep mode. Sources are also available!
"
Sense SDK win32 C++
For informations about SDK (installation, use compile...), see here: http://charlie-soft.com/Software/Manila_SDK/html/
Good work ! thanks for sharing hope devs will use it.
Hello my friend !
Great work !
( C'était exactement ce que je cherchais en c++ pour mes MFC smart device !!! )
Great Work, Thx for the source!!
Really great work!
but I have two questions:
- is QVGA resolution supported?
- have you planned to extend MessageBox types to Abort/Retry?
thank you
regards
NIce work
Altough i don't really know what todo with it... i instalt the example.cab and it was really smooth!
Only one thing if i go to other controls and i want to change the value then the onscreen keyboard should show up right? But it doesn't.... So i slide my qwerty keyboard open, and in landscape i get an error message: DDERR_SURFACELOST(back buffer)
I dont know what it means... is this landscape compatible?
Good job man !
Nice works !
I just have a feedback, I find too slow the animation when you click on the "back" button, is there is a way to speed it up ? (or disable simply the animation)
SDK Manila
Hello all !
I will try to answer all your questions. So :
- is QVGA resolution supported?
No but easy to implement... Just resize resources to correct resolution. I will post resources shortly.
- have you planned to extend MessageBox types to Abort/Retry?
If it's something wanted, I will do it.
- is this landscape compatible?
No, not yet. But will be in next release!
-Back button too slow.
I will add a method to set the speed of animation... in the next release
-Bug with hardware keyboard
The onscreen keyboard don't show up and I don't know why... I will look around for a fix.
If a developer wants to translate .NET applications into C++, feel free to post I will try to help you!
There is still lot of work, but I will try to do this quickly!
petititi said:
- have you planned to extend MessageBox types to Abort/Retry?
If it's something wanted, I will do it.
Click to expand...
Click to collapse
thank you for quick reply. I need this extension for my app "htc menu loader" (link in signature) to migrate from .net to c++
again, really great work. You are making something that HTC should have done months ago.
Great project !
I don't know if you notice but I disabled the bottom taskbar... Do you think that I should add the possibility to enabled it? I saw that your application needed one...
I hope you will find my SDK easy to use !
Hey, this looks awesome.
Question though: I'm just shy of clueless when it comes to making an actual working app. Is there any place I can go to read/learn the coding I will need to actually use this?
Application win32 c++
You can use the example application included into the SDK to learn basic stuff or you can download this application: WakeOnWan. It’s based on my SDK (here are the sources).
You need some basic knowledge about Object-oriented programming and C language. I try to explain how to use the SDK in the example using comments or on my webpage.
I will also post a short tuto in second post...
Very, very nice! The demo runs very smoothly on my stock Touch Pro 2.
petititi said:
You can use the example application included into the SDK to learn basic stuff or you can download this application: WakeOnWan. It’s based on my SDK (here are the sources).
You need some basic knowledge about Object-oriented programming and C language. I try to explain how to use the SDK in the example using comments or on my webpage.
I will also post a short tuto in second post...
Click to expand...
Click to collapse
Awesome thanks!
What's sad, is when I was young, I used to be able to code in C. Made my first video game when I was 6 on a Commodore 64 (ok i dated myself here) Now, can't remember very much
C++ ? It's just like riding a bike!
Hatefly said:
Awesome thanks!
What's sad, is when I was young, I used to be able to code in C. Made my first video game when I was 6 on a Commodore 64 (ok i dated myself here) Now, can't remember very much
Click to expand...
Click to collapse
I'm sure you can!
It's just like riding a bike - you never really forget how. And we are here to help you to refresh your memory.
petititi said:
I'm sure you can!
It's just like riding a bike - you never really forget how. And we are here to help you to refresh your memory.
Click to expand...
Click to collapse
Sweet thanks! Just downloaded an ebook on c programing.
Sounds (and looks) great, although there are still to many glitches (like not working in landscape etc.) which are preventing me from using this package.
But I have one question, why aren't you (all) including some TripleState Checkboxes and OnOffItems ?
I need them often but you cant find such controls online - not to speak of sense.
TripleState Checkboxes ?
Hello,
the TripleState Checkboxes is a simple feature I can add. To be sure, TripleState Checkboxes will looks like:
And tripleState On/Off:
I will include them in the next release... Be patient, the next release is coming soon and adds support for portrait and fixes a few bugs...

[ICONS]Icons for WP7 - Many Accent Color | Install Guide | New !!! VideoGuide

Hello,
I have made some simple icons for apps because it was annoing that some app's icons didn't look like the entire theme .
The small icons from the "start menu" have already the background colored because with the transparent background don't get colored like in the home screen, after the accent color .
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Choose yourself how you want your icons to look like when you choose the Orange Theme (the same for the other themes)​
Themes Colors:
- Blue - color code - 0068cb
- Brown - color code - a05000
- Green - color code - 339933
- Lime - color code - 8cbf26
- Orange -color code - f09609
- Pink - color code - e671b8
- Purple - color code - 6234cc
- Red - color code - f60d0b
- Teal - color code - 00aba9
I made icons for:
- Advanced Config,
- Advanced Explorer,
- Connection Setup,
- Facebook,
- Fantasia Painter,
- Fim,
- Flashlight HTC,
- Just Another Map,
- Lists,
- Maps Pro,
- Mapsnap GPS,
- Palm Reader,
- Registry Editor,
- Relaxer,
- Shazam,
- SHCameraApp,
- Smart Tile,
- SOS 2 SMS,
- Super Tube,
- Terra Explorer,
- TouchXplorer,
- UniMediaRemote,
- Voice Changer,
- Wallpapers HD,
- Wp7 News,
- XDA Wallpaper,
- Messenger,
- You tube.
[06.04.2011]
- 5001 Amazing Facts
- 5001 Amazing Facts Lite
- Adobe Reader
- Amazon Kindle
- Bible 7
- Bible 7+
- Calorie Counter by FatSecret
- Compass
- Fake Call
- Flashcards
- Foursquare
- Free Dictionary
- GasBuddy - Find Cheap Gas Price
- Google Search
- iClickr Powerpoint Remote
- iClickr Powerpoint Remote - Lite
- IP camera viewer
- List it! Do it!
- Magic Black Ball
- Messenger by Miyowa
- Microsoft Tag Reader
- Netflix
- PC Remote
- Photobucket
- Send to WP7
- Simpi RSS Free Reader
- Simpi RSS Reader
- Traffic
- Twitter
- WikiPanda
Needed Tools:
- Windows Phone Device Manager
or
- Advanced Explorer
- Desktop Host
Install Guide​Video Guide
More easy way to install the icons is with Device Manager of TouchXperience (video guide above):
1 - download Icons (the ones with - SMI) and ProductId
2 - unzip the icons
3 - Open Windows Phone Device Manager (sync with the device) and open Explore Files and Folders\Applications\Install\
4 - Open the unziped folder and open the folder with the color you want
5 - Select all (or select the ones you want) and drag them to Windows Phone Device Manager - Explore Files and Folders\Applications\Install\
6 - wait till all folders are copied
That's it !!!
For those that can't use the method above, try the old ones below:​First Method to Install (for one icon at a time)
I will make an example for Advanced Explorer with Orange color
1 - download nichitandrei - Simple Icons.zip and Product Id
2 - unzip
3 - open nichitandrei - Simple Icons\Orange code - f09609\Advanced Explorer\
4 - copy .PNGs to Desktop Host\bin\UploadRoot
5 - look in the Product Id.txt and see what code has the app of which icon you replace (for Advanced Explorer - DEA9333A-E91C-44ED-BB1F-2400CD9E824E)
6 - go to the phone and open Advanced Explorer go to remote page and refresh it till you'll see the icons from the UploadRoot
7 - Copy the icon in Applications\Install\DEA9333A-E91C-44ED-BB1F-2400CD9E824E\Install\
And that's it
Second Method to Install (for more than one icon at a time)
I will make an example for Advanced Explorer with Orange color
1 - download nichitandrei - Simple Icons - SMI.zip and Product Id
2 - unzip
3 - copy Orange folder (from nichitandrei - Simple Icons - SMI\Orange\) in Desktop Host\bin\UploadRoot\
4 - open nichitandrei - product id.txt and you will see the product id (for Advanced Explorer - DEA9333A-E91C-44ED-BB1F-2400CD9E824E)
5 - if you don't want to change the icon for Advanced Explorer, in Desktop Host\bin\UploadRoot\Orange\ delete the folder named DEA9333A-E91C-44ED-BB1F-2400CD9E824E
6 - after you delete all the folders you don't want, go to the phone and open Advanced Explorer go to remote page and refresh it till you'll see the Orange folder from the UploadRoot
7 - open Orange folder and you'll see the product id folders (like DEA9333A-E91C-44ED-BB1F-2400CD9E824E)
8 - select them and copy them in the Application\Install\ (try to not copy more than 7 at the time. From my experience Advanced Explorer blocks)
9 - wait till all folders are copied
If you need other icons leave a list with the name of the app
Thanks
- to my wife for her Support and Understanding
Attention!!! v2 contains just the new icons. To have it all download both v1 + v2
Download
- nichitandrei - Simple Icons.zip
- nichitandrei - Simple Icons - SMI.zip
- nichitandrei - product id.txt
- nichitandrei - Simple Icons - v2.zip
- nichitandrei - Simple Icons - SMI - v2.zip
- nichitandrei - Product ID v2.txt
Feel free to leave a feedback or simply press Thanks button to show your appreciation​
I know, I know I posted this on HD2 Forum, but I was wrong, because this is for all WP7 devices and I know that [ICONS] must be posted on THEME Sub-Forum but on WP7 there is no Theme Sub-Forum​
I don't get it, weren't you bothered that when you have a theme (e.g: blue, orange, red ect) the icons had different colors or you don't like these.
No feeback, no thanks I'm a little dissapointed... At least for the fact that I implemented the ideea of changing the icons
This post is for future updates. If I will need
I would try this but advanced explorer doesnt work on focus
Hope this works for you
Vintage144 said:
I would try this but advanced explorer doesnt work on focus
Click to expand...
Click to collapse
Ok, I figured out a method for your problem:
Download "Icons by nichitandrei.xap" and open it with Winrar and copy the folders with the icons you want to install then save and close.
Install "Icons by nichitandrei.xap" like any other app.
In your phone, after you install "Icons by nichitandrei.xap" it will open a blank page from which you can not go back, so just press the windows button (to go to homescreen).
Open a file explorer that works for you and go in applications/install/00000000-0000-0000-0000-000000000000/ and here you have all the folders with the icons you wanted.
From here you can copy/paste like in the methods to install from above.
V2
Check out in the first post!! Today I added v2 (if you want all icons, you must download both v1 + v2)
Don't forget to leave a feedback , and of course I will still make other icons if you want, just leave a list
Finally someone has taken the initiative, well done fantastic work!
P.S. Can you please add Navigon icon on your next release, Thanks!
gfreek said:
Finally someone has taken the initiative, well done fantastic work!
P.S. Can you please add Navigon icon on your next release, Thanks!
Click to expand...
Click to collapse
Thanks, I'm glad you like it
Ok, I will add Navigon icons in my next relese, till then you can download them from the attach below (I maded them today). The Product Id is in the pack.
Good luck
Updates
I added the new way to install the icons, using Device Manager of TouchXperience and a video guide for this method to better understanding
All in the first post here
Help
Hi Dears
I emergency need all WP7 icons and Icon tile
Please guide me where can I find???
thanks
arses said:
Hi Dears
I emergency need all WP7 icons and Icon tile
Please guide me where can I find???
thanks
Click to expand...
Click to collapse
If you refer to icons made by me, you can find them in the buttom of the first post. If you want the original one, you can find them in the app xap (use winrar to open the xap)​
Hi, thank's for your work
Please show me the dir of Internet Explorer's icon ?? I want change this icon
Magenta color?
Great
Thanks
nichitandrei said:
I don't get it, weren't you bothered that when you have a theme (e.g: blue, orange, red ect) the icons had different colors or you don't like these.
No feeback, no thanks I'm a little dissapointed... At least for the fact that I implemented the ideea of changing the icons
This post is for future updates. If I will need
Click to expand...
Click to collapse
To be honest, most of us are doing everything we can to get some colour into our phones and get rid of the drab WP standard, this mod is the total opposite to what a lot of people want!
My phone has every mod I could lay my hands on to make the home screen and program list look as interesting as possible instead of the plain and boring one colour theme Microsoft try to make us have.
If you could modify this to make the phone more colourful instead of less then a lot more people would want it.
steve_htc_wizard said:
To be honest, most of us are doing everything we can to get some colour into our phones and get rid of the drab WP standard, this mod is the total opposite to what a lot of people want!
My phone has every mod I could lay my hands on to make the home screen and program list look as interesting as possible instead of the plain and boring one colour theme Microsoft try to make us have.
If you could modify this to make the phone more colourful instead of less then a lot more people would want it.
Click to expand...
Click to collapse
I posted this in 2011, but I'm still on Windows Phone, for sure it's my last Windows Phone till they will work harder for this OS and they will bring more apps (I'm referring to the popular apps and games)
And to answer to your comment, I'm telling you just that...this OS it was called METRO and it was looking more 'metro' when it was in one color and that's why I open this thread, but now, a lot of apps will make there icon transparent to look the best with the new background of the start screen.
Have fun with this OS!!!
nichitandrei said:
I posted this in 2011, but I'm still on Windows Phone, for sure it's my last Windows Phone till they will work harder for this OS and they will bring more apps (I'm referring to the popular apps and games)
And to answer to your comment, I'm telling you just that...this OS it was called METRO and it was looking more 'metro' when it was in one color and that's why I open this thread, but now, a lot of apps will make there icon transparent to look the best with the new background of the start screen.
Have fun with this OS!!!
Click to expand...
Click to collapse
im pretty sure this will be my first and last handset with windows phone too, After this im off to android!
I came to windows phone after years and years with windows mobile and this terrible looking and basic o.s was a real shock and major disappointment.
Metro in my opinion was a real mistake and has made this o.s look dull and boring.
Then there's the basic o.s, I can't believe how stripped out this is, every single decent feature or setting has gone, Windows mobile was 1000x better than windows phone, Microsoft have lost there way and its a shame.
I understand what you tried to do and you did what you wanted very well, I was just saying that it might have been better making this project but with the opposite and added colour and fancy icons, maybe you could have done both.
I am in no way trying to tear apart your work and any work on this o.s is appreciated, just giving feedback to the obvious dissapointment that you showed when there was little attention from people when you released the mod.
If my comments upset you i apologize, it was not my intention.
steve_htc_wizard said:
im pretty sure this will be my first and last handset with windows phone too, After this im off to android!
I came to windows phone after years and years with windows mobile and this terrible looking and basic o.s was a real shock and major disappointment.
Metro in my opinion was a real mistake and has made this o.s look dull and boring.
Then there's the basic o.s, I can't believe how stripped out this is, every single decent feature or setting has gone, Windows mobile was 1000x better than windows phone, Microsoft have lost there way and its a shame.
I understand what you tried to do and you did what you wanted very well, I was just saying that it might have been better making this project but with the opposite and added colour and fancy icons, maybe you could have done both.
I am in no way trying to tear apart your work and any work on this o.s is appreciated, just giving feedback to the obvious dissapointment that you showed when there was little attention from people when you released the mod.
If my comments upset you i apologize, it was not my intention.
Click to expand...
Click to collapse
Your comment didn't upset me at all.
I believe that Android is way more boring than Windows Phone 8.1 but it has many popular apps and it has the galaxy note line that has the nice pen and this makes me go for it.

An app idea...about accent colors (utopic right now...) :(

I was thinking that at the time where developers will have access to Mango accent colours, it could be a lovely idea to make an app like this:
http://colorschemedesigner.com/
Imagine a "light version" of this app for WP7 with:
1. The same access to color data (viewing of hex/rgb values)
2. A big "randomizer button" to randomly produce combinations (like the one inside the online app menu...)
3. Presets with load save
4. ..an "apply as theme colors" function (the app would map the generated colors to each of the available parts (registry keys) of the OS.
..someone could tap the randomizer button if he doesn't know about color combinations, until he finds one he likes. Then, he could manually or automatically (randomly) map colors to the appropriate areas of the OS. (I think this is about 3-4 color mappings), save the combination into a preset and apply it by adding it as an accent color in phone's theme menu.
I could definitely buy such an app, even if it was an expensive one.
i think what you are looking for is called Advanced Config
Cristi93 said:
i think what you are looking for is called Advanced Config
Click to expand...
Click to collapse
Advanced Config:
1. Doesn't work properly (It closes right after I open it in Mango and I also get an error message at the start. I had it before some months and it worked...I don't know what happened)
2. It doesn't have a color scheme generator (we can just choose one color for the tiles and active fonts and that's all). So we can't change background / tile / tile font colors according to an already tested combination of colors.
3. It doesn't have a randomizer (which, if all the above existed, could modify all of the OS colors with a minimum amount of aesthetic errors. Not all combinations are suitable for every use, but at least many of them could be quickly accessible with just the press of a button and they could be even modified if the user wanted.
...for those who say that WP7 has already great colors and doesn't need apps/functionality like this I can say that the system doesn't get bloated with an advanced color customizer. It gets bloated when someone tries to radically change the style of the UI, like making the 2d icons look like "iphone 3d icons" etc...that could be bad...but having the ability to properly change tile/background/font colors, is like MS making us part of their design team.
Moved to WP7 Software development
This is not the place for a discussion about a non existent app. Please post in the correct section.
Take it easy
O_G
Sorry for the wrong thread. I hadn't noticed that section..

Categories

Resources