Posts Tagged ‘sass’

Subscribe via RSS
  1. 28 Aug, 2025

    The History of Themeable User Interfaces

    A full-ish history of user interfaces that can be themed to meet the opportunities and constraints of the time

  2. 09 Mar, 2020

    Sass !default and themeable design systems

    I’m working on a couple themeable design systems right now, and we’re architecting components to offer a white list of themeable CSS properties, so each brand can define their design language using design tokens and then pipe those through into […]

  3. 07 Jan, 2019

    Stepping away from Sass

    In this great post, Cathy Dutton explains how she removed Sass from her codebase. Why? She explains how she used to use Sass for layout, variables, and typography, but now native CSS features take care of that for her. I’ll […]

  4. 05 Oct, 2018

    Sass Selectors: To Nest Or Not To Nest?

    I threw a question out on Twitter regarding CSS/Sass authoring style. It was a difference between Option 1: .c-btn { … } .c-btn__icon { … } and Option 2: .c-btn { &__icon { … } } The results were interesting so […]