Opera GestureBox extension - Nook Touch Themes and Apps

For those who missing page UP and page DOWN or mouse gestures, miss no more.
Install Opera Mobile Labs build with extensions and GestureBox extension. As you can see from screenshoots it's powerful tool
Bonus
For white background and black text (disables background image as well) save this as user.css to /data/data/com.opera.browser.extensions/opera/styles/ (usable with Opera classic too):
Code:
* { background: white ! important; color: black !important }
:link, :link * { color: #222222 !important }
:visited, :visited * { color: #333333 !important }

Related

High Contrast Browsing

Ran across this for Opera -
1. Install one of the Opera browsers (mobile seems to accept it)
2. Create a css file containing something like the following (tweak to your liking), put it somewhere accessible on your phone.
Code:
Code:
* { background: black ! important; color: white !important }
:link, :link * { color: #00ffff !important }
:visited, :visited * { color: #ff00ff !important }
3. Open Opera and type "opera:config" into the url field.
4. Click "Quick find" and type "css" to filter the options.
5. Tick the "User CSS" tick box
6. In the "Local CSS File" choose the css file you made earlier. (to go up directories use the back arrow on the status bar)
7. Save your changes to the config screen.
8. Restart Opera
Seems to help some.
Now if they would only enable the volume buttons for scroll we'd be set.
If someone really wants to experiment here is a link to a fuller CSS file but beware it is dark and needs to essentially be reversed to be nice on the Nook
usercss.ru/styles/night/night.css
Click to expand...
Click to collapse
Here's it reversed
Code:
* { background: #ffffff ! important; color: #000000 !important }
:link, :link * { color: #686868 !important }
:visited, :visited * { color: #888888 !important }
THanks for this.
It works.
With my opera (v. 11.50) i had to:
1. goto opera:config
2. search for css
3. Tick in the Author display mode: author CSS and user CSS on.
4. Tick in the User display mode: author CSS and user CSS on.
5. under User prefs, scroll down to Local CSS file
6. Locate your uploaded css file.
7. Click Save in every section, like Author display mode, User display mode, and User prefs.
Looks much better for news sites on the e-ink screen.
I took carpeVideo's link and messed with the css. It looks nice and high-contrasty mostly in Opera. All I did was change color values and take out a bit of code I didn't think needed to be there. YMMV, I'm not responsible, remove it if you don't like it, etc.
@namespace url(http://www.w3.org/1999/xhtml);
html {
background:#fff !important;
}
html * {
background: none !important;
color:#000 !important;
border-color:#000 !important;
border-width:0 !important;
}
html a,
html a * {
color:#000 !important;
text-decoration:underline !important
}
html a:visited,
html a:visited *,
html a:active,
html a:active * {
color:#737373 !important
}
html input,
html select,
html button,
html textarea {
background:#fff !important;
border: 1px solid #000 !important;
border-top-color: #000 !important;
border-bottom-color: #000 !important;
}
html input[type=button],
html input[type=submit],
html input[type=reset],
html input[type=image],
html button {
border-top-color: #000 !important;
border-bottom-color: #000 !important;
}
html input:focus,
html select:focus,
html option:focus,
html button:focus,
html textarea:focus {
background:#fff !important;
color:#000 !important;
border-color: #000 #000 #000 !important;
/*border-top-color: #000 !important;*/
outline: 2px solid #000 !important;
}
html input[type=button]:focus,
html input[type=submit]:focus,
html input[type=reset]:focus,
html input[type=image]:focus,
html button:focus {
border-color: #000 #000 #000 !important;
}
html input[type=radio] {
background:none !important;
border-color:#333 !important;
border-width:0 !important;
}
html img[src],
html input[type=image] {opacity:.5}
html img[src]:hover,
html input[type=image]:hover {opacity:1}
html,
html body {
scrollbar-base-color: #000 !important;
scrollbar-face-color: #fff !important;
scrollbar-shadow-color: #fff !important;
scrollbar-highlight-color: #fff !important;
scrollbar-dlight-color: #fff !important;
scrollbar-darkshadow-color: #000 !important;
scrollbar-track-color: #000 !important;
scrollbar-arrow-color: #000 !important;
scrollbar-3dlight-color: #fff !important;
}
/* Link shadows */
/*
@media screen and (min-width: 128px) {
html a:hover,
html a:hover * {
background-color: #fff !important;
text-shadow: 0 0 1em #000 !important;
}
}
*/
/* Webkit */
@media all and (-webkit-min-device-pixel-ratio:0) {
html body * {
-webkit-transition: color 1s ease-in, background-color 2s ease-out !important;
}
html a,
html textarea,
html input,
html select {
-webkit-transition: color .4s ease-in, background-color .4s ease-out !important;
}
html img[src],
html input[type=image] {
-webkit-transition: opacity .4s ease-in !important;
}
html input:focus,
html select:focus,
html option:focus,
html button:focus,
html textarea:focus {
outline-style: outset !important;
}
}
Looks nice cymoze - the only issue I see is photos seem washed out. I will try some experimentation and see if I can come up with something.
A simple change fixes the photo issue:
html img[src],
html input[type=image] {opacity:1}
html img[src]:hover,
html input[type=image]:hover {opacity:1}
for those who don't want to hunt for the above section (credit to Cymoze - I only changed 1 number)
Code:
@namespace url(http://www.w3.org/1999/xhtml);
@namespace url(http://www.w3.org/1999/xhtml);
html {
background:#fff !important;
}
html * {
background: none !important;
color:#000 !important;
border-color:#000 !important;
border-width:0 !important;
}
html a,
html a * {
color:#000 !important;
text-decoration:underline !important
}
html a:visited,
html a:visited *,
html a:active,
html a:active * {
color:#737373 !important
}
html input,
html select,
html button,
html textarea {
background:#fff !important;
border: 1px solid #000 !important;
border-top-color: #000 !important;
border-bottom-color: #000 !important;
}
html input[type=button],
html input[type=submit],
html input[type=reset],
html input[type=image],
html button {
border-top-color: #000 !important;
border-bottom-color: #000 !important;
}
html input:focus,
html select:focus,
html option:focus,
html button:focus,
html textarea:focus {
background:#fff !important;
color:#000 !important;
border-color: #000 #000 #000 !important;
/*border-top-color: #000 !important;*/
outline: 2px solid #000 !important;
}
html input[type=button]:focus,
html input[type=submit]:focus,
html input[type=reset]:focus,
html input[type=image]:focus,
html button:focus {
border-color: #000 #000 #000 !important;
}
html input[type=radio] {
background:none !important;
border-color:#333 !important;
border-width:0 !important;
}
html img[src],
html input[type=image] {opacity:1}
html img[src]:hover,
html input[type=image]:hover {opacity:1}
html,
html body {
scrollbar-base-color: #000 !important;
scrollbar-face-color: #fff !important;
scrollbar-shadow-color: #fff !important;
scrollbar-highlight-color: #fff !important;
scrollbar-dlight-color: #fff !important;
scrollbar-darkshadow-color: #000 !important;
scrollbar-track-color: #000 !important;
scrollbar-arrow-color: #000 !important;
scrollbar-3dlight-color: #fff !important;
}
/* Link shadows */
/*
@media screen and (min-width: 128px) {
html a:hover,
html a:hover * {
background-color: #fff !important;
text-shadow: 0 0 1em #000 !important;
}
}
*/
/* Webkit */
@media all and (-webkit-min-device-pixel-ratio:0) {
html body * {
-webkit-transition: color 1s ease-in, background-color 2s ease-out !important;
}
html a,
html textarea,
html input,
html select {
-webkit-transition: color .4s ease-in, background-color .4s ease-out !important;
}
html img[src],
html input[type=image] {
-webkit-transition: opacity .4s ease-in !important;
}
html input:focus,
html select:focus,
html option:focus,
html button:focus,
html textarea:focus {
outline-style: outset !important;
}
}
Thanks! this one is even better!
it works awesome on opera mobile. thanks
Thanks! This works great.
I came up with this css. Its a little bit of the above css scripts. This loads more images, changed font face, font colors and link formatting.
HTML:
* {line-height: 1.3 !important; color: #000 !important; font-family: "Malabar", Droidserif, Caecilia, Amasis, serif !important}
body, table, div {background-color: #FFF !important}
:link, :link * { color: #808080 !important}
:visited, :visited * { color: #333 !important}
a:hover,a:active{outline:0 !important; text-decoration:none !important}
a {text-decoration: none !important; line-height: inherit !important; font-weight: inherit !important}
a:focus{outline:thin dotted !important}
a {border-bottom: 1px dotted #333 !important}
a[href$=jpg], a[href$=jpeg], a[href$=jpe], a[href$=png], a[href$=gif] {
text-decoration: none !important;
border: 0 none !important;
}
a img {
text-decoration: none !important;
border: 0 none !important;
}
p {font-size: 1.5em !important;line-height: 1.3 !important;}
This is awesome! Will be getting this as soon as I can.
After I brush up on my CSS, I could experiment with some other styles. First, we need an HTML page that shows all of the different styles. I could host that page if someone made it...
Plan to install this on my mom's simple touch this weekend...is there a "latest" version since the one in march?

[CM11][PA][MAHDI][THEME] L-Kat/L-Kat Dark [6.0][09-12-14]

L-KAT series of themes replicates the latest Android 5.0 Lollipop UI and material design. I've worked hard to bring in even the smallest of details of android 5.0 to the theme. Hope you guys enjoy it
Click to expand...
Click to collapse
{
"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"
}
Click to expand...
Click to collapse
MORE SCREENSHOTS (GO TO L KAT 5.0 ALBUM)
Changelog​
V6.0
* Dialog button color changed to more authentic color
* Butter smooth dialog button animation from lollipop
* Butter smooth clock action button animation from lollipop
* Much smoother quicksettings tile animation
* Better dialogs, menu backgrounds and dialog shadows
V5.9
* Re themed Downloads
* Torch tile fixed, refinements to notification drawer
* Power menu icons themed
* Smoother dialer animation
* Improvements to calculator
* Play music controls (dark)
* white on white controls of, play music, google plus, inbox, gmail fixed
* Play music, camera, calendar icons
* Themed theme chooser
* Adb icon changed to lollipop icon
V5.5.1
* Accent matched Lollipop style fast scroll thumbs
* Desk Clock menu icons
* Progress bars, spinners, indeterminate progress bars
* Edge glows
* Action bar test fields
* Tabs, Time picker
* Action bar shadows
* Text handles and cursors
* Animation in dialer
* Recents layout redesigned with icons integrated
* Whatsapp re themed
V5.2
* Fixed calendar action bar (Dark)
* Real L style dialogs both dark and light
* Ripple animation to many list view presses, selections
* Fixed dialer animation
* Removed Gmail theme to avoid Gmail 5.0 crash
V5.0
* Complete overhaul of theme
* Lock screen
* Systemui icons
* Switches inline with latest preview
* Up button in action bar
* Clock app
* Messenger inspired messaging
* Gmail
* Email
* Dialog buttons like L
* Fonts
* Progress bar, sliders
* Latest icons
* Contacts app overhaul
* Custom material wallpapers
* Calendar
* Dialer
* Overhauled keyboards(one light themed, one dark themed)
* Settings
* New companion app
V4.5
* Themed Youtube app
* L layout for dialogs
* Improvements to messaging app including new message bubbles
* Redesigned In call UI
* Minor improvements to settings switches( Dark only )
V3.8
* Material design play store
* Play music completely revamped with latest leaked color pallette
* Added support for Mahdi rom
* Improved photos app
* Improved burger menus
* Fixed several white on white bugs in settings, notification icons of Google plus, Gmail, Poweramp
* Better quicksettings user switcher
* Improved wifi icons in status bar
* Improved switch toggles
V2.8
* Changed Kitkat gradient from transparent to 20% transparency to avoid white on white bugs
* Improved action bar Up button
* Material Light and Dark themes improved
* Better list separators
* Action Bar search icons themed
* Added AOSPA support
* Several improvements in settings, contacts, hangouts, calendar, mms
* Themed play music
V2.5
* Added android L status bar tints to several apps
* Themed Gmail
* Themed several unthemed parts
* Added l preview animations for check boxes, radio buttons
* Improved dialer tabs, tab text, icons, and ripple effect on pressing digits
* Quicksettings tile dimensions fixed, ripple animation on touch
* Text handles, search text fields themed
* Overall UI icons changed to material design
* Better calendar
* New layout for recents screen
* Themed whatsapp
* Beautifully done switches all over
* Increased action bar heights
V1.6
*Fixed Quick pulldown
*Themed apollo
*Themed desk clock
*Fixed some white on white bugs
*Text fields
*and many more...
V1.5
*Revamped stausbar
*Beautiful checkboxes matching individual app theme
*Themed calculator
*New hangouts icon
and many more.. Hard to remember all the changes
V1.1
*Themed Contacts app
v1.0
*Initial release
Click to expand...
Click to collapse
DOWNLOAD NORMAL V6.0 XDA VERSION​
DOWNLOAD DARK V6.0 XDA VERSION​
If you like my work,you can support me by purchasing my themes in play store​
G+ Community
Normal version on play
Dark version on play
​
Click to expand...
Click to collapse
Thank you!
Looks really nice, no bugs on my old N7 (latest CM nightly).
Do you plan to add L style notification sounds, ringtones, ...?
Also, are the checked checkboxes blue on purpose (screenshot)?
user91 said:
Thank you!
Looks really nice, no bugs on my old N7 (latest CM nightly).
Do you plan to add L style notification sounds, ringtones, ...?
Also, are the checked checkboxes blue on purpose (screenshot)?
Click to expand...
Click to collapse
No mate. Since the theme is wip they are going to be themed later
Awesome theme man !!! ?
Realy like
[emoji106] looking good . keep up
Please theme wifi and signal icons on status bar.
Good luck on working on this theme.
Better come late,Then keep on wait.... @b16h22 simply rocks!!!
Awesome work,Highly appreciate.
Great theme, is it possible to theme superSU icon and purity settings icon?
Inviato dal mio Nexus 4
WHOAAAA the dialer/phone app is the best thing about this theme so far :good:
---------- Post added at 05:37 PM ---------- Previous post was at 05:37 PM ----------
Simonna said:
Please theme wifi and signal icons on status bar.
Good luck on working on this theme.
Click to expand...
Click to collapse
+1000000
Good Work Breh!
Great job bro, may I request you to theme lockscreen? Not a priority, just do it whenever you can
Looks great though
Notification panel don't hides completely the clock in status bar. Please fix this.
Sent from my Nexus 5 using Tapatalk
Fantastic work sir
Sent from my One M8 using Tapatalk
Epic. said:
Great job bro, may I request you to theme lockscreen? Not a priority, just do it whenever you can
Looks great though
Click to expand...
Click to collapse
Of course i will
OppiFjell said:
Notification panel don't hides completely the clock in status bar. Please fix this.
Sent from my Nexus 5 using Tapatalk
Click to expand...
Click to collapse
its a small niggle happened as a result of padding in the sides of notification drawer. I think its a small compromise
Paoliz said:
Great theme, is it possible to theme superSU icon and purity settings icon?
Inviato dal mio Nexus 4
Click to expand...
Click to collapse
Currently i support only cm11. But i"ll extend the support after completing the theme.
Fantastic job,it looks very cool.after great sgy rom,now great theme[emoji106]
hello.
I really like your skin. can u try to change the lockscreen notifications to be similar to the notifications system in white?
thank you
atomizasser said:
hello.
I really like your skin. can u try to change the lockscreen notifications to be similar to the notifications system in white?
thank you
Click to expand...
Click to collapse
how do you get Lockscreen notifications?
petechipwell said:
how do you get Lockscreen notifications?
Click to expand...
Click to collapse
Hi.
It is an personalize option on Nexus 5 Mahdi ROM.
atomizasser said:
Hi.
It is an personalize option on Nexus 5 Mahdi ROM.
Click to expand...
Click to collapse
oh okay thanks!
It would be great if u theme apollo music & other apps too

[THEME][CM11/CM12][FLAT DESIGN] Pure Flattice [3.0/4.1] [17.10.2014]

{
"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"
}
Hello, XDA!
This is my first theme and first APK made overall, so be patient if I'm too dumb and so on.
The theme is made to follow Flat style with dark elements.
Version 3 is for CM11, version 4 is for CM12. CM11 version will probably not get any updates.
CM 11 DOWNLOAD LINK: http://er-mta.net/gallardo/com.gallardo994.pflatticebeta.apk
CM 12 DOWNLOAD LINK: http://er-mta.net/gallardo/com.gallardo994.pureflatticelp.apk
Screenshots
Main colours
Code:
#0d0d10 - Dark colour
#101015 - Lighter dark colour
#202025 - Even ligher
#505055 - Max brightness colour
Features
Code:
* Recolored some elements, removed holo blue parts
* Resized recents
* New switches
* List animations
* Minimalistic overscroll animation
* KDE message notification sound
* New navibar look
* Brand new animations
* More (read changelog)
Changelog
Code:
=== Version 1.2 ===
* Fixed some unreadable parts (not completely, Contacts are still f**ked - thanks to lovely Lollipop)
* Recolored notifications a bit
* Improved some Holo elements
* Ported some elements from Pure Flattice for CM11
* Made some colour palette changes
* Several fixes for Settings (touch animations are still broken)
* Recolored icons for Euphoria and BlissPop
* Other minor stuff I could forget
================================================
================================================
================== Pure Flattice 4 ==================
================================================
================================================
=== Version 3.0 ===
* Made switches brighter
* Made radio buttons brighter
* Changed animation speed and interpolator (should look nicer now, test if it's good)
* Added Google Plus actionbar theming
* Added Whatsapp actionbar theming
* Added Hangouts theme
* Added Play Store actionbar theming
* Changed lockscreen handle and dots (looks better imo)
* Changed holo light to pure white colour
* Changed holo dark colour a little bit
* Added slightly visible section dividers (e.g. settings)
* Added statusbar tinting for settings
* Removed actionbar icon from settings
* Reworked notification shade and quick settings colours
=== Version 2.5 ===
* Themed AOSP Keyboard
* Themed Google Keyboard
* Added Dynamic 1+1 Lockscreen support
=== Version 2.3 ===
* Themed Clock app
* Fixed dialog boxes
* Themed multiple Holo Light elements
* Minor fixes and changes
=== Version 2.2 ===
* Reduced apk size from 25 to 7 megabytes
* Fixed dialer
* Huge cleanup and icon size fixes.
=== Version 2.1 ===
* Changed animations for activities
* Added dialog animations
* (Hopefully) Fixed geolocation tile
=== Version 2.0 ===
* Changed activity animations
* New wallpaper to match theme style
* Minor fixes
=== Version 1.15 ===
* Fixed dialer buttons and texts
* Changed lockscreen handle
=== Version 1.12 ===
* Switched to minimal list animation to improve look on low-res devices
* Recolored holo light actionbars
* New switches and radio buttons for holo light
* Aligned navibar icons
* Slightly improved notification shade colours
* New scrubbers for holo light
* Compressed graphics to improve performance on low-end devices
* Recolored text areas for holo light
* Fixed holo dark radio buttons
* Maybe more
=== Version 1.10 ===
* Themed calculator
* Themed dialer
* Changed list animation
* Fixed actionbar for several applications
* Replaced the font so it looks better on low-res devices
=== Version 1.9 ===
* Themed checkboxes
* Themed textfields
* Themed radio buttons
* Small fixes and cleanup
=== Version 1.7 ===
* Made switches brighter
* Added toast messages theming
* Added new scrubbers
=== Version 1.5 ===
* Fixed icons for HDPI and XHDPI devices (hopefully)
* Reduced apk size a little
* Themed some holo light stuff
I'm looking for some feedback so I can improve future versions. I hope you enjoy the theme. Thanks and see you in this thread!
The theme is free, but donations are appreciated. You can find donation button at the bottom of http://er-mta.net/ or use XDA button under my avatar.​
Great work bro, but I think you should make the switches a bit more lighter, maybe make them white. Can't wait for future development!
ANDR01DN00B said:
Great work bro, but I think you should make the switches a bit more lighter, maybe make them white. Can't wait for future development!
Click to expand...
Click to collapse
I had tried white switches before and believe me, they don't really look "in place". But i'll try to find some colour which fits the design
P.S. Fixing some things for HDPI devices, an updated version will be uploaded soon.
1.5 update is up, read OP for changelog.
I need some feedback from guys with HDPI and xHDPI devices. Is everything fine?
I have an idea to add some custom animations to activities. What do you think of that?
Gallardo994 said:
I have an idea to add some custom animations to activities. What do you think of that?
Click to expand...
Click to collapse
Loving this theme. Only suggestion so far is maybe make the switches a different color.
JamFan05 said:
Loving this theme. Only suggestion so far is maybe make the switches a different color.
Click to expand...
Click to collapse
#bebebe is used is hoop light colour for backgrounds, I'll check how it looks with that one in 10 mins and probably upload a test build.
Sent from Nexus 5 using garbage^W Tapatalk
Gallardo994 said:
#bebebe is used is hoop light colour for backgrounds, I'll check how it looks with that one in 10 mins and probably upload a test build.
Sent from Nexus 5 using garbage^W Tapatalk
Click to expand...
Click to collapse
Cool. Can't wait to test it out.
JamFan05 said:
Cool. Can't wait to test it out.
Click to expand...
Click to collapse
Build 1.7 is up. Check if you like it now
Gallardo994 said:
Build 1.7 is up. Check if you like it now
Click to expand...
Click to collapse
Yes. Much better, the switches are way easier to see now. Good Job.
So great theme man!!! Thx so much! 4pd
Looking for a good wallpaper to include in the next version... Does anyone have one?
Sent from Nexus 5 using garbage^W Tapatalk
Version 1.9 released with more stuff included.
1.10 is also up now, even more things are in
1.12 has been released with a huge ton of updates.
Cool theme bro, flat design rulezzzzz :good:
YEAH KEEP UP THE GOOD WORK - NICE DARK THEME (sorry caps)
Personally, I enjoy a semi-transparent background to notification pull-down. BUt will keep an eye on your progress, hope you get more attention here thanks.
Gallardo994 said:
Hello, XDA!
This is my first theme and first APK made overall, so be patient if I'm too dumb and so on.
The theme is made to follow Flat style with dark elements.
It has been made on XXHDPI device (Nexus 5). I don't guarantee that it's gonna work properly on low-res devices!
DOWNLOAD LINK: http://er-mta.net/gallardo/com.gallardo994.pflatticebeta.apk
Main colours are:
Code:
#0d0d10 - Dark colour
#101015 - Lighter dark colour
#202025 - Even ligher
#505055 - Max brightness colour
Great work Buddy, Which font ii used in screenshots ?
Click to expand...
Click to collapse
Ajaykumar21066 said:
Gallardo994 said:
Hello, XDA!
This is my first theme and first APK made overall, so be patient if I'm too dumb and so on.
The theme is made to follow Flat style with dark elements.
It has been made on XXHDPI device (Nexus 5). I don't guarantee that it's gonna work properly on low-res devices!
DOWNLOAD LINK: http://er-mta.net/gallardo/com.gallardo994.pflatticebeta.apk
Main colours are:
Code:
#0d0d10 - Dark colour
#101015 - Lighter dark colour
#202025 - Even ligher
#505055 - Max brightness colour
Great work Buddy, Which font ii used in screenshots ?
Click to expand...
Click to collapse
Helvetica or smth like that.
Sent from Nexus 5 using garbage^W Tapatalk
Click to expand...
Click to collapse
Great theme....
can you please change the color of text of numpad of dialer, currently it is dark grey on black background. Its hardly redable in sunlight.
himsin said:
Great theme....
can you please change the color of text of numpad of dialer, currently it is dark grey on black background. Its hardly redable in sunlight.
Click to expand...
Click to collapse
Sure, I will edit that in next version

[THEME][Dec 11] Euphoria Dark CM13 Theme - 3.1

Hello everyone I decided to create a XDA-Thread for my theme so here is it.
{
"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"
}
Screenshots
What is themed?
THEMED SYSTEM:
* Notifications
* Quick settings
* Light & Dark Styles
* framework & systemui
* Theme.Devicedefault from light to dark
THEMED APPS:
* AOSP Keyboard (Material Dark & light)
* AudioFX
* Browser
* Calculator
* Contacts
* CMFileManager
* CMUpdater
* Dialer/Incall
* Deskclock
* DocumentsUI
* DU-Apps
* Eleven
* Euphoria OTACenter
* Gallery
* Google Keyboard
* Google Now + Launcher
* Google +
* Google Play Store
* Google Music
* Hangouts
* Launcher3
* Settings
* SMS/MMS
* Spotify
* Theme Chooser
* TouchControl (EuphoriaOS)
* Trebuchet Launcher
* WhisperPush
* Whatsapp/ Material Version
* Custom lockscreen wallpaper
* Custom wallpaper
* Custom Bootanimation
* Custom Font
Changelog
11.12.2015 - 3.1
Some love for DirtyUnicorns!
- Added DU-Updater, DU-About App
- Fixed Launcher3 and Keyboard colors for DU.
General:
- Fixed calculator
- Added Dark Theme for Downloads/DocumentsUI
- Fixed some SystemUI colors
- Fixed some GoogleNow Cards (Flights for example) & Icon colors
5.12.2015 - 3.0
- Added support for CM13.
- Fixed colors for Google+ and Hangouts.
21.09.2015 - 2.1
New switches, radio & check_buttons, scrubbers.
Dark google now & launcher
Fixed Hangouts
Themed IceSteamclient
2.0
...
25.05.2015 - 1.9
Fixed:
Bluetooth: Textcolor
Google+: Colors/drawables
Deskclock: Backgroundcolor
New:
Themed Spotify
Simpleweather: Notificationbackground
Maybe something else. idk
Blue header version is back as a seperated download.
01.05.2015 - 1.8
Fixed:
Theme: Font (updated fonts.xml)
Framework: Color of Zen modes (restartmenu)
Whatsapp: Fixed some color and drawables
GMail: Notificationcolor
Settings: color of TRDS Icon
Play Store: Removed blue the color in most of the categories to make it more colorful again
New:
Google Music: themed
22.04.2015 - 1.61
Fixed:
Theme: Installation issue
Dialer: colors and Styles
22.04.2015 - 1.61
Fixed:
Whatsapp: ticks color
MMS: Searchbackground color
16.04.2015 - 1.6
Fixed/new/changed:
Framework: drawables, styles, switches
Dialer, tile colors,
Contacts: tile colors,
SystemUI: Header color,
Whatsapp: colors, styles / please update to the new material version
Settings: new icons, colors
Play store: colors of all categories
MMS: tile colors, quick reply, textcolor
22.03.2015 - 1.5
Fixed:
Framework: drawables, styles
Contacts: colors, styles
SystemUI: Icons
Hangouts: Colors
New:
Framework: Styles, drawables
SMS/MMS: Styles, drawable (Dark)
SystemUI: Icons, navigation bar
AOSP Keyboard: Settingscolor
Whatsapp: Styles, Drawables (Material Design)
01.03.2015 - 1.4
Fixed:
Framework: Colors, drawables, styles
Browser: Styles
Contacts: Colors
Dialer: Styles, Colors, FC
Settings: Textcolor for disabled options, missing Icons
SystemUI: Revert Notification Header to dark
bubbleUPNP: Notification color
Google Now: Colors, styles back to white
New:
Framework: Sliders (Scrubber)
Framework: transparent holo-dividers
SystemUI: Brightness control icon
Playstore: Color of games / apps
Google Mail: Color
CMFileManager: Dark style
Youtube: Color
22.02.2015 - 1.3
Fixed:
SystemUI: Notification button color and the screenshot panel on CM
Framework: Theme.DeviceDefault from Light to Dark
Framework: Sound Icons in the Restartmenu
Framework: Holo dark / holo blue
Framework/Settings: Blisspop support
Dialer: styles, colors and incall picture
Browser: styles and colors
Hangouts: New tabs
Settings: Icons, Subsettings
New:
AudioFX
CMFileManager
SoundRecorder
Trebuchet Launcher (Stock CM12 Launcher)
Settings: CMUpdater
Settings: WhisperPush
Settings: Network Settings
TouchControl (EuphoriaOS)
LockClock (Settings)
Theme: Font
Framework: Switches
SystemUI: Notification Header
SystemUI: Quicksettings text color
SystemUI: QS Background
Framework; Theme.DeviceDefault from Light to Dark
Deskclock: Analog clock widget and Analog clock in the app
14.02.2015 - 1.2
Fixed:
Dialer: Search text, color issues
New:
Google Now Launcher
Google Now
Dialer: Settings
Theme: Wallpaper
04.02.2015 – 1.11
Fixed:
Dialer: FC
New:
Google +
OTACenter EuphoriaOS
30.01.2015 - 1.02
Fixed:
Settings: Scroll handle color, colors, Icons
New:
Framework: Touch color
Framework: Support for cm layout changes
AOSP Keyboard: Material light
Theme: Lock screen wallpaper
29.01.2015 – 1.01
Fixed:
Settings: FC
Contacts: background color
27.01.2015 – 1.0
First release
Download
All versions are the same!
It´s recommended to use the Play Store version to get automatic updates!
Free version:
Download
If you want to support me
Donate Version:
Download
XDA Version for people who can´t use the Play Store or wants to go back to an older version:
Download
Current versions:
Euphoria Dark CM13 Theme - 3.1
Euphoria Dark CM13 Theme Donate - 3.1
If you find any bugs/ unthemed elements, post them here or in my G+ Community and tell me which ROM are you using. (Sent me Screenshots if possible)
Check out my Google+ Community for my new themes & updates!
Google+​
Reserved
Good call, love your theme, alterative version from last round was my favourite, appreciate your work!!!
razrlover said:
Good call, love your theme, alterative version from last round was my favourite, appreciate your work!!!
Click to expand...
Click to collapse
You can use the play store version again. I changed the header to dark again
blazze11 said:
You can use the play store version again. I changed the header to dark again
Click to expand...
Click to collapse
can you please provide free version on XDA , because i dont have internet connection on phone and also no wifi ... so i cant download from google play,,
if possible please provide XDA version.
Regards
naitik2012 said:
can you please provide free version on XDA , because i dont have internet connection on phone and also no wifi ... so i cant download from google play,,
if possible please provide XDA version.
Regards
Click to expand...
Click to collapse
Added it to the first post
blazze11 said:
Added it to the first post
Click to expand...
Click to collapse
Thanks a lot
This theme is legit. Very well done and polished. Good work!
Excellent Theme ! Beautiful support for BlissPop !! Job well done
Is it possible to set the same wallpaper for lockscreen as the home screen so that the wallpaper dont change when i unlock?
This is BY FAR THE BEST CM12 theme as per my taste, I have tried so many themes, paid + free, this one is so far the best.
And thanks for removing the pattern/wallpaper thing from quick setting top bar.
Could You please make an alternative version featuring the old notification header background from v 1.3?
Please make another version back with the customized header image like it was on 1.3 thanks
is it me or there is no digits on PIN password on lockscreen?
Beautiful Theme
The blue color is stunning and matches perfectly with the darkness
jexsuzon said:
is it me or there is no digits on PIN password on lockscreen?
Click to expand...
Click to collapse
For me everthing is working fine
Really the only i am missing is themed whatsapp , the best like hangouts color ('both chat bubbles white as in hangouts ), all other is more then perfect.
Tylog said:
Really the only i am missing is themed whatsapp , the best like hangouts color ('both chat bubbles white as in hangouts ), all other is more then perfect.
Click to expand...
Click to collapse
I used WhatsAppMD all the time but I will add it to the theme.
Amazing work blaze11 ! Any chance for a light version?
blazze11 said:
I used WhatsAppMD all the time but I will add it to the theme.
Click to expand...
Click to collapse
After two times Banned i give up with WA Plus or MD , i know my luck. Would be great when you theme it but please no colored chat bubbles , same look as hangouts and i am 100% happy , colored chat bubbles make me crazy.
That's one plus of the theme , settings menu, dialer are blacked , things like play store are white ( background ) , that's what i like.

[THEME][AROMA] Materialize Theme for AROMA Installer

{
"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"
}
Introduction
Materialize Theme is a theme for AROMA Installer. Inspired by sir Daniiiik49's Material theme and based on the MIUI 4 ICS theme. It applies the Material Design concept to give you a whole new look n' feel It also includes the most common Material Design Icons for you to just choose whichever icon you prefer to use.
NOTE: Currently supports small screen devices, cause Buttons, Icons and other parts of the theme appears small on a larger screen device (see the screenshots below). Sorry for inconvenience.
Screenshots
Device with 320x480 resolution:
Device with 1080x1920 resolution:
Changelog
Materialize 01.05.2017
Set Roboto Light font as the default theme font
Removed Device Pixelate size selection
Removed Font size selection
Minor changes
Materialize 12.12.2016
Added 2 theme colors; Indigo and Blue Grey
Added 70 Material Design Icons
Updated Buttons. Will now raise only on press
Updated Dialog window. Fixed Titlebar text color
Updated Window transition. A bit slower transition
Set default Device Pixelate size to HDPI
Set Poiret One font as the default theme font
Materialize 12.10.2016
Applies Polymer's Paper Shadow
Updated Progress bar
Updated Dialog window
Updated Selection controls
Materialize Lite
Initial release
Customization
I've now moved and updated the source files to a new repository. Here if you want to customize your own theme, click the button below for some basic useful info you may want to know first
Colors
All colors I've used here are from the Color Style guideline. Just choose your primary (500) theme color and you're good to go. The rest of the colors are defaults from the MIUI 4 ICS theme and were already set in the source files, so no need to worry bout it.
First thing is replacing some values of the theme's properties. Open up the file theme.prop, replace the HEX color code values of the following theme properties listed below with your preferred color.
Code:
[FONT="Courier New"]color.selectbg = #RRGGBB
color.selectbg_g = #RRGGBB
color.titlebg = #RRGGBB
color.titlebg_g = #RRGGBB
color.dlgtitlebg = #RRGGBB
color.dlgtitlebg_g = #RRGGBB
color.scrollbar = #RRGGBB
color.progressglow = #RRGGBB[/FONT]
Brief description about the properties; color.selectbg and color.selectbg_g for item selection (e.g Selecting an item in selectbox), color.titlebg and color.titlebg_g for the Titlebar text color, color.dlgtitlebg and color.dlgtitlebg_g for the Dialog's Titlebar text color, color.scrollbar is basically for the Scrollbar, and color.progressglow for the animating gradient color of Progress bar.
Background, Navbar, Dialog & Titlebar
The colors used in Background, Navbar and Dialog can also be found in the Color Style guideline under Themes. Background color is Grey 50 (#FAFAFA), the color of the Navbar is actually the App bar color which is Grey 100 (#F5F5F5), Dialog background color is White (#FFFFFF). And the color for Titlebar, as well as for Dialog's Titlebar will be the primary theme color.
Select Image
The Select image can be seen in the item selection (e.g When pressing an item in menubox). There isn't much use of this one so I just make it totally transparent.
Progress Bar
The Progress bar has two segment, one is the empty Progress bar and the other one is the fill Progress bar. Color used for the empty Progress bar is Grey 300 (#E0E0E0) and for the fill Progress bar is the theme's primary color. Additionally, to change the animating gradient color, just replace the value of the property color.progressglow in the theme.prop file.
Buttons
Here I've implemented the Raised Button which at first is just a classic button, then will raise once it's pressed. The following order of theme properties below will show this implementation.
Code:
[FONT="Courier New"]img.button = button.9
img.button.focus = button_primary.9
img.button.push = button_primary_raised.9[/FONT]
Brief description about the properties; img.button is the classic or let's say the default button, img.button.focus is basically the focused button (not elevated/no drop shadow), and img.button.push is the pressed button (elevated/drop shadow on).
The color used for the default button is Grey 300 (#E0E0E0) and for the primary button is the theme's primary color.
Toggles
There are four states for the Checkbox and Radio button; OFF, ON, FOCUSED, and PRESSED states. Obviously, The OFF state is the unselected one, and of course, the ON state is the selected one. FOCUSED state is only applied to the unselected item where it's simply indicates that the item is just focused but not selected. PRESSED state is where the ripple-like effect is shown which indicates that the item is pressed, either it is selected or unselected.
The following order of theme properties below will show this implementation:
Code:
[FONT="Courier New"]# CHECKBOX
img.checkbox = checkbox
img.checkbox.focus = checkbox_focused
img.checkbox.push = checkbox_focused_ripple
img.checkbox.on = checkbox_on
img.checkbox.on.focus = checkbox_on
img.checkbox.on.push = checkbox_on_ripple
# RADIO BUTTON
img.radio = radio
img.radio.focus = radio_focused
img.radio.push = radio_focused_ripple
img.radio.on = radio_on
img.radio.on.focus = radio_on
img.radio.on.push = radio_on_ripple[/FONT]
Brief description about the properties; img.radio and img.checkbox for the unselected item, img.radio.focus and img.checkbox.focus for the focused unselected item, img.radio.push and img.checkbox.push for the pressed unselected item, img.radio.on and img.checkbox.on for the selected item, img.radio.on.focus and img.checkbox.on.focus for the focused selected item (here, FOCUSED state is not applied to selected item), img.radio.on.push and img.checkbox.on.push for the pressed selected item.
See the Selection Controls guideline for the color style.
NOTICE: Some of the image has a .9 at the end of their names (as seen in the file theme.prop). This is important so don't change it, unless you know what's its purpose.
Other References
The drop shadows I used here is the Polymer Paper Shadow. See this blog for details on how to apply these values in Photoshop.
Credits
Sir @Daniiiik49 for giving me permission to use his theme's resource.
Big THANKS to @Mitsos Vorris for providing screenshots and for those countless test :laugh:
Just a simple Thanks if you liked my work. It will be very much appreciated
Can you post some screenshots?
Mitsos Vorris said:
Can you post some screenshots?
Click to expand...
Click to collapse
I can't right now, I don't have a PC but after the update I'll post it all. Sorry for inconvenience.
Theme updated
Final update.
Turkish Language
Texts are translated for Turkish.
Language File Only
EypCnn said:
Texts are translated for Turkish.
Language File Only
Click to expand...
Click to collapse
Thanks for contribution
AROMA-CONFIG Update
Added Font size selection for small, medium and large screen size
Re-added Device Pixelate size selection but with additional 2 options
great job
great job
Screenshots added.
Minor changes.
Thank you!
Thanks for the work :good:

Categories

Resources