Sublime Forum

Monokai Color Scheme of ST3 How to setup in ST4

#1

Hellow Every One…
How can I setup ST3 Original/Default “Monokai” Color Scheme in ST4.

There is little bit difference in Foreground (Text) Color style.

Thank you…ST3%20Monokai%20Default%20(1) ST4%20(1) ST4%20(2) ST4%20Monokai%20ST3%20(3)

0 Likes

#2

You can use Preferences > Customize Color Scheme and add the following rule to restore the former highlighting of CSS units:

{
    "rules":
    [
        {
            "scope": "constant.numeric.suffix.css",
            "foreground": "var(red2)",
            "font_style": ""
        },
    ]
}

In general, use Tools > Developer > Show Scope Name to see the scope at the current cursor position.

2 Likes

#3

Thank you Sir.

0 Likes

#4

If acceppted, old look may return in a future release out of the box.

1 Like

#5

Some Font Style color are not changed but some are not please Resolve my problem i am trying from many days.

Check the following schreenshot. I circled white round color in this screenshot picuture. the Asteric selector color is yellow and the value color “negative or positive” is also yellow color. in ST3 the asteric selector color is “red” and (- and +) color is blue. HQQ

0 Likes

#6

ST4%20(1) Dear Sir. some “Foreground Color” are still same… not changed in ST4.

please check this image…
HQQ
“*” selector color is still yellow…
also “-10px” or “+10px”

0 Likes

#7

Signs are scoped and tinted as ordinary keyword.operator for consistency as nearly all syntaxes do so.

Wildcards moved from entity.name.tag.css to variable.language.wildcard.

1 Like

#8

Sorry i did not understand. What you mean ??

0 Likes

How to install ST3 "Monokai-color-scheme" in ST4
#9

Thank you The Asterisk * Selector Color is changed from yellow to red. Now how can i changed value color “- or +” color from red to blue.! STRK|300x235

0 Likes

#10

You can use

{
    "scope": "meta.number keyword.operator.arithmetic.css",
    "foreground": "var(purple)"
},

for the number signs in CSS.

2 Likes

#11

Thank You…

Its pretty look good. :smiling_face_with_three_hearts:

0 Likes