.text {
    fill:#ffffff;
}
.button .base {
    fill:#1a1a1a;
}
.button .darken {
    fill:#131313;
}
.button .lighten {
    fill:#232323;
}
.trigger .base {
    fill: #121212;
}
.trigger .darken {
    fill: #0d0d0d;
}
.analog .base {
    fill:#0f0f0f;
}
.analog .lighten {
    fill:#141414;
}
#touchpad .base {
    fill:#080808;
}
#touchpad .lighten {
    fill:#121212
}
#button_brand .base {
    fill:#050505;
}
.pressed .base {
    fill:#eeeeee !important;
}
.pulse .base {
    animation:pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
      filter:drop-shadow(0 0 0 rgba(238,238,238,1));
    }
    70% {
      filter:drop-shadow(0 0 10px rgba(238,238,238,0));
    }
    100% {
      filter:drop-shadow(0 0 0 rgba(238,238,238,0));
    }
}