Questions tagged [theming]

Theming is the modification of the user interface of a software application without affecting its functionality

Theming is used to match the look and feel of an application to a particular domain, motif, or user. It is also known as skinning. Many facets of the design can be controlled, such as:

  • Color schemes
  • Background images
  • Typography
  • Iconography

References

420 questions
25
votes
2 answers

Accessing previous theme variables in createMuiTheme

Running Material UI 1.0.0-beta.24 I'm setting a new theme using createMuiTheme: import {createMuiTheme} from 'material-ui/styles'; const theme = createMuiTheme({ typography: { fontSize: 16 } }); export default theme; How can I access the…
Romainpetit
  • 897
  • 2
  • 11
  • 29
17
votes
3 answers

How can I theme the color the disabled text form field's label in Flutter?

I want to apply a theme in my Flutter app on the disabled text fields' label because the grey color I have right now is quite hard to read. I'd like to apply it to my entire app, so I'd like to use theming, however, I didn't find any solution that…
Vince Varga
  • 6,101
  • 6
  • 43
  • 60
14
votes
4 answers

switch statement in twig drupal 8

Does twig in drupal 8 have a switch case statement? Something like: {% set size = rows | length %} {% switch rows %} {% case "1" %} {{ do something }} {% case "2" %} {{ do example }} {% case "3" %} {{ do that }} …
The Naga Tanker
  • 441
  • 1
  • 4
  • 17
14
votes
3 answers

.skin vs .css from asp.net

What is the main difference between .skin and .css in asp.net? .skin is new enhancement of IDE. I have been working with .css. What is available in .skin that is not to .css thanks, saj
selvaraj
  • 889
  • 2
  • 16
  • 29
13
votes
3 answers

"Theming Icons" functionality crashes live wallpapers on Android 12

I recently noticed that my live wallpaper apps are crashing when users try to set the newly introduced "Theming Icons" functionality on Android 12. This new functionality calculates a palette of colors from the user's current static wallpaper and…
Ardi
  • 285
  • 3
  • 8
13
votes
1 answer

Best way to dynamically change theme of my Vue.js SPA?

So I think the title is enough explaination: I would like to dynamically theme my whole application. Maybe this means to change color of all divs when I press a specific button, or change the whole webapp's colors when a specific user logs in. Just…
Eugenio
  • 1,013
  • 3
  • 13
  • 33
12
votes
6 answers

Conditional styles with CSS custom properties

I enjoy using CSS custom properties, but there's this thing that I often find that I wish I could do. I wish to be able to apply some styles conditionally based on the value of a CSS custom property. Here's some pseudo-code: .something { border:…
timetowonder
  • 5,121
  • 5
  • 34
  • 48
9
votes
9 answers

C++/WIN32 A professional looking application - is it really possible?

I've been looking everywhere to find a good solution / tip on how to release an application that has todays 'top-end' look. As we all know, when coding with windows we normally get windows-style colors/buttons/lists etc. They just look and feel…
PeeS
  • 1,164
  • 3
  • 20
  • 43
9
votes
6 answers

Override theme color for touch highlight, scroll hinting

I am trying to substitute and override the default touch highlight color of the theme for the corporate ones. I have successfully done it for the actionbar buttons by using actionBarItemBackground on my theme properties, but I am looking at an…
MLProgrammer-CiM
  • 17,231
  • 5
  • 42
  • 75
8
votes
5 answers

Images not displaying from theme layout (Orchard CMS)

I'm trying to create theme for Orchard CMS. The template I have wasn't made for it so I have some troubles displaying images from Layout.cshtml. This is the current folder structure on my web server (theme folder structure…
wegelagerer
  • 3,600
  • 11
  • 40
  • 60
8
votes
1 answer

Apply Windows Theme to Office Com add-in

For ages, Delphi has supported the Enable runtime themes switch on the Application Settings tab. However, this only works for executables. DLLs are assumed to take over the theming (and other) setings from their parent application. Unfortunately,…
Paul-Jan
  • 16,746
  • 1
  • 63
  • 95
8
votes
1 answer

Is it possible to combine [ngStyle] and ::ng-deep?

I try to build an application that can be themed completely at runtime. Therefore i want to set global settings like font-size, color, background-color etc. on my root app.component. For now i do it with predefined CSS classes: // CSS …
vachee
  • 395
  • 1
  • 4
  • 15
7
votes
1 answer

How can I handle multiple themes in an angular component?

I'm working on an Angular 9 project where I'm creating two themes and each theme has it's own css output file. I modified the angular.json file to handle that: "styles": [ { "input": "src/styles/themes/light-theme.scss", "lazy": true, …
Fede Snieg
  • 133
  • 1
  • 9
7
votes
0 answers

is it possible to define a custom theme angular material using less?

i have started applying a custom theme for my angular project,but i am confused a bit whether it's possible to define the theme as less file. the hierarchy of my new theme is like this: ** -custom-theme.scss -custom-components-themes.scss ** the…
fsocdn
  • 73
  • 2
7
votes
1 answer

Android Custom Theming in ActionBar/Tabs

I have the theme Holo.Light.DarkActionBar The tabs are now set to white background, light gray text--very unreadable. I simply want to change the text to something much, much darker. I have searched the styles to see if I can override but all I…
TheLettuceMaster
  • 15,594
  • 48
  • 153
  • 259
1
2 3
27 28