Themes and theming can be used to give another look and feel to existing UI and has a close relation to templating.

learn more… | top users | synonyms (1)

56
votes
10answers
55k views

How to change theme for AlertDialog

I was wondering if someone could help me out. I am trying to create a custom AlertDialog. In order to do this, I added the following line of code in styles.xml @drawable/color_panel_background ...
28
votes
6answers
34k views

How to change current Theme at runtime in Android

I've created a PreferenceActivity that allows the user to choose the theme he wants to apply to the entire application. When the user selects a theme, this code is executed: if (...) { ...
4
votes
2answers
3k views

How do I override those classes defined in primefaces.css?

I've created my own theme as a separate Maven project, and it is loaded correctly. Now I want to change the size of an component. For example, a <p:orderList>. It has a class called ...
22
votes
3answers
2k views

Windows Visual Themes: Gallery of Parts and States?

Microsoft Windows lets programmers draw GUI elements using the look and feel of the current theme using functions like DrawThemeBackground and DrawThemeText. The elements are specified by Class, Part, ...
25
votes
4answers
16k views

GWT theme style overrides my css style

I have some html files with their own css. I want to use them in a gwt application so i copied the html and the css files in the application. The problem is when i open the html it uses the gwt theme ...
68
votes
2answers
17k views

What is so special about Generic.xaml?

I've been trying to figure out how to organize my ResourceDictionary files for reuse and sharing with other members of my team. I keep coming across "Generic.xaml", but if I look on MSDN for ...
29
votes
4answers
37k views

How to set default WPF Window Style in app.xaml?

I am trying to set the default Style for every window in my WPF Windows application in my app.xaml. So far i have this in app.xaml: <Application.Resources> <ResourceDictionary> ...
284
votes
21answers
154k views

Dark color scheme for Eclipse? [closed]

Is Eclipse at all themeable? I would like to install a dark color scheme for it, since I much prefer white text on dark background than the other way around. Edit: so apparently there is NO easy way ...
73
votes
5answers
54k views

Eclipse IDE for Java - Full Dark Theme

Is there any way to completely turn Eclipse to a dark IDE? Here's a Picture of what I'm asking: I don't mind doing 1 hour of work to do something like this :D EDIT: As Konstantin Komissarchik said, ...
9
votes
3answers
6k views

Error importing HoloEverywhere

First of all, I am new with Android. I am doing an app, and I am implementing a library called HoloEverywhere. This library use in the themes.xml the library ActionBar Sherlock. I have imported to my ...
5
votes
3answers
7k views

How do I switch my CSS stylesheet using jQuery?

What I'm working on is simple. You click on a button (id="themes") and it opens up a div (id="themedrop") that slides down and lists the themes. (I only have two at this point) <button ...
24
votes
1answer
9k views

Why so complex to set style from code in Android

If you want to set the style of a Button you create from code you have to do something like this; Button btn = new Button (mActivity, null, R.attr.someattribute); in attrs.xml, you set up a ...
97
votes
19answers
68k views

Any free WPF themes? [closed]

I'm not a designer, so I'm looking for some free WPF themes. Any suggestions?
22
votes
2answers
15k views

Windows 7 theme for WPF?

Is there any way to make a WPF app look like it's running on Windows 7 even if it's running on XP? I'm looking for some kind of theme I can just paste in. I'm aware of the themes project on Codeplex ...
9
votes
3answers
20k views

How to change tab style in Android?

I'd like to my Android tabs to look flat and simple like the ones in the official TWitter app. How can I override the default (light) theme and change the background images for the tabs using ...
6
votes
2answers
6k views

Themes in Android?

i have an Idea to create Themes for Android Mobile. But i have no knowledge on that. i would need to know about the things what is the file format of theme for android? what kind of things i want to ...
24
votes
6answers
22k views

Trouble referencing a Resource Dictionary that contains a Merged Dictionary

I have a library, CommonLibraryWpfThemes, with several Resource Dictionary XAML files in it. My Themes/Generic.xml file contains a ResourceDictionary.MergedDictionaries declaration that merges all the ...
24
votes
4answers
18k views

Asp.Net MVC Themes, how to?

I have a ASP.Net 2.0 site and want to translate it into MVC paradigm (I'm new to this), but starting from Zero. I have some themes in my old site, but reading here and there, it seems like Themes ...
5
votes
1answer
5k views

Where can I download Microsoft's standard WPF themes from?

Microsoft has made their Classic, Luna, Royale, and Aero themes for WPF available for download as XAML resource dictionaries. Where can I download them from? I can never find the link!
5
votes
3answers
3k views

How do I alter the default style of a button without WPF reverting from Aero to Classic?

I've added PresentationFramework.Aero to my App.xaml merged dictionaries, as in... <Application x:Class="TestApp.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
36
votes
19answers
61k views

Visual Studio color theme [closed]

What Visual Studio color theme do you use? Or just the default? Also see: What color scheme do you use for programming?
7
votes
2answers
3k views

Styling EditText view with shape drawable to look similar to new holographic theme for Android < 3.0

I want to create a shape drawable for that mimics the new holographic theme (Android >=3.0) on older Android versions. It's quite easy to draw a line at the bottom with <?xml version="1.0" ...
4
votes
2answers
6k views

Set Holo theme in older Android versions?

I have used several applications which appear to use Android 4.0's 'Holo' theme, whilst still running on an older version of Android (2.3). Is there a supported way to do this or have these developers ...
19
votes
1answer
5k views

How to create Multiple Themes/Skins for iphone apps? [closed]

I have an iphone app ready and approved by the app store. Now I want to create different themes for my app. Can someone please help me out, with info/links/steps on how to create themes for my app? I ...
18
votes
4answers
4k views

Set Emacs defaut font face per-buffer/mode

How do you change the default face which Emacs uses to style text on a per-mode basis? For example, say that I am already happy with the face customizations that I have, which include a default ...
11
votes
3answers
3k views

How to switch an Application between Themed and not Themed at run-time?

Very much like the "Project|Options|Application|Enable runtime themes" CheckBox, but dynamically at run-time instead. [Delphi XE targetting Win XP or Win 7] I tried playing a bit with ...
6
votes
7answers
8k views

How do I change the current windows theme programatically?

I want to allow my users to toggle the current user theme between Aero and Windows Classic(1). Is there any way that I can do this programatically? I don't want to pop up the "Display properties", and ...
9
votes
5answers
21k views

Android:How to programmatically set an Activity's theme to Theme.Dialog

So I have an Activity (say TestActivity) which needs to act as a normal unthemed Activity as well as a Theme.Dialog at other place. I am trying to reuse same TestActivity for both the tasks. All I am ...
14
votes
5answers
11k views

Not targeting the latest versions of Android

I have a warning when trying to test theme on latest Android SDK Package 4.2. Here is my manifest file: <?xml version="1.0" encoding="utf-8"?> <manifest ...
9
votes
6answers
11k views

change jquery mobile color swatch dynamically

I want to change a jquery-mobile buttons color swatch dynamically with javascript, but I can't' find a way (except removing and adding all classes and event handlers, but that's to messy). Whats the ...
7
votes
6answers
19k views

Android ListView background colors always showing grey

I have a ListView that I'm populating from a custom ListAdapter. Inside the Adapter (in the getView(int, View, ViewGroup) method) I'm setting the background color of the View using ...
1
vote
1answer
4k views

Change the style of AlertDialog

When I run this code the alert dialog is shown but there is one white border around the dialog and also the borders are little round. I do not want this white border and I want to have real corners ...
4
votes
3answers
166 views

Actionbar styled overflow menu items

I need to make fully custom overflow menu items (different background colors as minimum as showed on picture). Is it possible?
4
votes
1answer
511 views

Is there a bug when changing themes when app is deactivated and reactivated in Windows Phone Mango

Edit: This is under windows 7.1 RC. (This code did work for 7.0) Lets say we open the application up in the dark theme. A line of code to detect this would be as follows: isDarkTheme = ...
3
votes
2answers
606 views

How to use inbuilt icons and template?

I'm trying to make a list that looks exactly like Sound setting in 2.3.4 as in this screenshot: The problem is that I tried using TableRow and ended up like this: ...
61
votes
9answers
39k views

Metro theme for website

Anyone know of an easy way to style a website with a windows phone 7 like metro theme ? Either a CSS or a jQuery-based theme would work.
23
votes
4answers
61k views

Free ASP.Net and/or CSS Themes [closed]

Where can I get some decent looking free ASP.Net or CSS themes?
112
votes
6answers
49k views

How can I switch themes in Visual Studio 2012

The Visual Studio 2012 offers two themes, Light and Dark. I want to switch the theme to Dark, but I'm not able to find any menus or options to do that. I found out a way importing settings from: ...
23
votes
1answer
15k views

Metro-like theme for WPF [closed]

I would like to know where i can get the theme that looks like Zune application for Windows (or MetroTwit) for WPF. I google it but i only get the theme for Silverlight 4, not WPF.
20
votes
4answers
16k views

How to create a jQuery Mobile theme

How do I create a jQueryMobile theme? Is it overriding the CSS the best way?
12
votes
2answers
5k views

GWT 2.0 Themes?

The default GWT themes are hideous. Does anyone know where a developer can find prepackaged themes that one can just 'drop' into an app and make the app look beautiful? Even worse, GWT 2.0's new ...
10
votes
4answers
5k views

How to take control of style sheets in ASP.NET Themes with the StylePlaceHolder and Style control

Update: This turned into a blog post, with updated links and code, over at my blog: ...
14
votes
4answers
16k views

JQuery Mobile default data-theme

Does anyone know how to set a default data-theme for jquery-mobile? It looks like it´s necessary to set the data-theme for every component. Even when you set the data-theme for the page data-role it ...
15
votes
1answer
8k views

ASP.NET MVC 3, how to do themes right

I'm looking for input on how to do "themes" in MVC 3 in the best way. I guess a custom view engine is needed to take care of locating the view files etc. I also would like the theme system to be ...
9
votes
2answers
3k views

Access resource defined in theme and attrs.xml android

I have a scenario in which I want to set a Drawable depending upon the theme defined. To explain this further, Here is what I have in code: \res\values\attrs.xml <resources> ...
23
votes
3answers
3k views

ASP.NET Themes - Should They Be Used?

I'd been reading up on themes in my ASP.NET book and thought that it could be a very handy solution, then I met some problems. The theme picks up every single CSS file in the folder If you want to ...
20
votes
4answers
8k views

PreferenceActivity and theme not applying

Hi all I have set the theme in the manifest file like this: android:theme="@android:style/Theme.Light" But I have a problem in the Preferences Activity, in the main preferences the theme shows ok, ...
10
votes
3answers
2k views

How to get my own defined attribute value in my style

I want to create 3 different themes for a dialog using a custom (own) attribute. I would like to set title colors by adding this to theme's style: <item name="titleColor">#FF0000</item> ...
7
votes
3answers
1k views

Visual guide to System.Windows.SystemColors

All throughout the Windows UX Guide it is suggested to use the appropriate SystemColors within an application to ensure that an application's default theme is consistent with the rest of the system. I ...
6
votes
2answers
3k views

How do I match my controls' styles to the current theme? (WPF)

If I create a custom control with WPF, how can I provide styles for the control that match the currently applied theme (Aero, Luna, Classic, etc.)? For example I'd like to apply the following when ...

1 2 3 4 5