realspal / bluej-dark-themes

Dark themes for BlueJ Java IDE.
MIT License
30 stars 6 forks source link

terminal not turning dark #3

Open Mcofir opened 10 months ago

Mcofir commented 10 months ago

just used the theme , the editor is turning dark and its amazing thank you for that , just the terminal is not dark but stays white and the text became kind of grey , so I used the dark theme and standart terminal theme , can you please fix the terminal background ?

id-dundjan commented 10 months ago

This also happened to me. Everything works well and looks good, apart from the background of the terminal, which is still white

Mcofir commented 10 months ago

This also happened to me. Everything works well and looks good, apart from the background of the terminal, which is still white

changed the terminal.css to this code and it fixed it, I hope the creature update the file in github

/ .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 /

id-dundjan commented 10 months ago

Thanks so much bro it worked :)

pomjoep commented 7 months ago

i tried that replacement code and its still not working for me

id-dundjan commented 7 months ago

try this instead:

/ .terminal .virtual-flow { -fx-gravity: rear; } / .terminal-split { -fx-orientation: vertical; } .terminal { -fx-background-color: #000000; } .terminal-output { -fx-background-color: #000000; -fx-fill: rgb(74, 74, 74); } .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/ } .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/ }

/ Slightly darker than white to make input field stand out: / .terminal, .terminal-error { -fx-background-color: rgb(0, 0, 0); /modified/ }