-
Hello, Am I doing something wrong? Any hint? Thanks a lot for your time. |
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
I just tested creating Example: ---
# Only the main Sass file needs front matter (the dashes are enough)
---
@charset "utf-8";
$base00: #1d1f21;
$base01: #282a2e;
$base02: #373b41;
$base03: #969896;
$base04: #b4b7b4;
$base05: #c5c8c6;
$base06: #e0e0e0;
$base07: #ffffff;
$base08: #cc6666;
$base09: #de935f;
$base0a: #f0c674;
$base0b: #b5bd68;
$base0c: #8abeb7;
$base0d: #81a2be;
$base0e: #b294bb;
$base0f: #a3685a;
@import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
@import "minimal-mistakes"; // main partials |
Beta Was this translation helpful? Give feedback.
-
I will try again then. |
Beta Was this translation helpful? Give feedback.
-
My error, sorry, it works like a charm. |
Beta Was this translation helpful? Give feedback.
-
I'd like to obtain a syntax highlighting identical to either GitHub (as we see if I put code blocks right here) or Stack Overflow. How can I identify exactly what color values to set for each of my |
Beta Was this translation helpful? Give feedback.
-
@ElectricRCAircraftGuy The colors map to the styling in this Sass partial: https://github.com/mmistakes/minimal-mistakes/blob/master/_sass/minimal-mistakes/_syntax.scss You'll have to determine how they map, but there are plenty of base16 themes out in the wild for you to reference and drop in. |
Beta Was this translation helpful? Give feedback.
-
I set the syntax highlighting scheme to gruvbox for the theme I'm using ( |
Beta Was this translation helpful? Give feedback.
I just tested creating
/assets/css/main.scss
and added the base16 variables with different colors before the other Sass imports and the colors changed for me.Example: