Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

terminal not turning dark #3

Open
Mcofir opened this issue Nov 1, 2023 · 5 comments
Open

terminal not turning dark #3

Mcofir opened this issue Nov 1, 2023 · 5 comments

Comments

@Mcofir
Copy link

Mcofir commented Nov 1, 2023

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
Copy link

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

@Mcofir
Copy link
Author

Mcofir commented Nov 4, 2023

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
Copy link

Thanks so much bro it worked :)

@pomjoep
Copy link

pomjoep commented Feb 23, 2024

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

@id-dundjan
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants