Sublime Forum

How to change the color of Hover popup links?

#1

How to change the color of Hover popup links?

15%402x

0 Likes

#2

If you only want to change the link color in the LSP popups, you can create a file mdpopups.css in the Packages/User folder with content:

.lsp_popup a {
    color: peachpuff;
}
1 Like

#3

Use this in Packages/User/mdpopups.css to style the links you highlighted:

.actions a {
  color: red;
}
0 Likes