Custom color for Skeleton placeholder

I have a website with a dark theme that’s why the white Skeleton placeholders for Queries with Frontend Rendering are not very pleasant.

Is there a way I can change the color of the skeleton elements with CSS?

Hi @Jonas,

You can achieve this by creating a global class/adding to your stylesheet:

  • targeting the .cc-loading-skeleton
  • Adding the following Custom CSS:
    .globalclass {
    –base-color: #434343;
    –highlight-color: #3a3a3a;
    }

Please let me know if this helps!

1 Like

Hi @Araminta,

that’s exactly what I was looking for. Thank you very much for your prompt answer!!

1 Like