Tomer-Aharoni / BlueJ-Dark-Mode-Theme

BlueJ Dark Mode theme, inspired by some similar repositories. Currently compatible with version 5.0.2 of BlueJ. ***This project is in no way related to the BlueJ software owners.***
MIT License
6 stars 3 forks source link

terminal stays white #3

Open Mcofir opened 10 months ago

Mcofir commented 10 months ago

thank you for the theme! the terminal stays white ,theres a fix ? bluej version 5.2.1

Mcofir commented 10 months ago

changed the terminal.css to this code and it fixed it, please update the file in the theme

/ .terminal .virtual-flow { -fx-gravity: rear; } / .terminal-split { -fx-orientation: vertical; } .terminal { -fx-background-color: #222222; } .terminal-output { -fx-background-color: #222222; -fx-fill: white; } .terminal-input { -fx-fill: rgb(114, 163, 219); / modified / } .terminal-method-record { -fx-fill: rgb(160, 99, 99); / modified / } .terminal-error { -fx-fill: rgb(255, 122, 122); / modified / -fx-background-color: #222222; } .terminal-stack-link { -fx-fill: rgb(255, 179, 179); / modified / -rtfx-underline-color: rgb(255, 122, 122); / modified / -rtfx-underline-width: 2; -fx-cursor: hand; } .terminal-stack-foreign { -fx-fill: hsb(0, 0%, 30%); / modified / }

/ Show prompt text even when we are focused: / .terminal-input-field { -fx-prompt-text-fill: hsb(0, 0%, 30%); / modified / }