BAS Editor Dark Theme

Support
  • Hello everybody!

    Is there somehow the possibility to convert the script editor into a dark theme?

    My eyes are bleeding at night

    Best regards!

  • @basmail the interface has changed recently and the old custom dark themes may have problems.
    If you know html and css you can do it yourself.
    Or make an order to make a dark theme.

    I don't think you should expect an official dark theme.

  • @tet-vivi I just did some of it myself, unfortunately I currently don't have enough time for such gimmicks, maybe someone else can finish it :)

    Unfortunately, I haven't found the correct files for the left menu yet...

    Edited files: 23.2.0.rar
    File path: %appdata%\BrowserAutomationStudio\apps

    8c1fd22d-fb38-48e9-a235-999a89cd0abe-grafik.png

  • I was having some serious eye strain too.
    Just add the following css between head tags:

    File1: apps/{version}/html/toolbox/index.html
    Add css between head tags:
    <style>
    .container-fluid{ background:gray;}
    .panelgridtitle{ color:white;font-weight:bold;}
    .panelgridtitleinner{color:white; font-weight:bold;}
    </style>

    File2: apps/{version}/html/scenario/index.html
    Add css between head tags:
    <style>
    .titlebody{background:#fff;}
    html{background:gray;}
    .container-fluid.main{background:gray; }
    </style>

    And you should get a panel looking like this:
    123.png