(ctrl + enter) execute code, custom css in Pulsar-Editor

Hello everyone, does anyone know how to visually customize the "ctrl + enter" key combination in Pulsar when running Tidal algorithms? I can't find the CSS class reference to add it to the "style.less" file (official recommendation to personalize the IDE), maybe it's not even via CSS. I want to make it more evident to the public during the live set.
Thanks in advance and happy holidays!
Ivan

hey, Ivan! I think the option is available inside the tidal.less file under \Users\yourusername\.pulsar\packages\tidalcycles\styles

Thanks Isaac!, I'm going to explore this file, I'll tell you how it goes.

Did you ever find out how to do this? I'd be interested to find out too!

Hi hellocatfood, not yet, it's still a pending task :frowning:

@hellocatfood @ivanabreu

add to your stylesheet (Ctrl+Shift+P > Open Your Stylesheet)

atom-text-editor.editor .line {
    -webkit-transition: background-color 0.7s ease-out;

    &.eval-success {
        background-color: #ff0000;
    }
}

Shorter transition times will allow the color to become more opaque

3 Likes

This is exactly what I need, thank you so much @geikha !