Skip to content

Commit

Permalink
changed some fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
hsetlik committed Apr 17, 2021
1 parent 705e541 commit 7429d4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 6 additions & 1 deletion Source/GlobalColor.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ static juce::Colour darkRed = lightRed.darker(0.45f);
static juce::Colour lightOrange = Color::RGBColor(249, 171, 62);
static juce::Colour highlight = Color::RGBColor(255, 236, 95);
static juce::Colour nearBlack = Color::RGBColor(24, 24, 25);
static juce::String operatorLabelFontName = "Neuropol";
static juce::Font futuraMediumItalic(float size)
{
return juce::Font("Futura Medium", size, 0).withStyle(juce::Font::FontStyleFlags::italic);
}
static juce::String operatorLabelFontName = "SquareFont Outline";
static juce::String modGridFontName = "Roboto Light";
};

3 changes: 1 addition & 2 deletions Source/ModulationGrid.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@ void ModulationGrid::paint(juce::Graphics &g)
g.fillAll(background);
auto textColor = juce::Colours::white;
g.setColour(textColor);
auto labelFont = juce::Font("VCR OSD Mono", 12.0f, 0);
g.setFont(labelFont);
g.setFont(UXPalette::futuraMediumItalic(12.0f));
auto buttonsBox = getLocalBounds().reduced(18);
auto area = getLocalBounds();
int n = area.getWidth() / 8;
Expand Down

0 comments on commit 7429d4b

Please sign in to comment.