Created
April 11, 2017 08:01
-
-
Save anonymous/3ae37bbad75a3b1309f6cc288b6f725a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fonts = [ | |
{"Arial rounded mt bold" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/arialrb.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/arialr.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/arialrb.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/arialr.ttf" | |
} | |
}, | |
{"Courier new" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/courbd.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/couri.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/courbi.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/cour.ttf" | |
} | |
}, | |
{"Georgia" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/georgiab.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/georgiai.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/georgiaz.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/georgia.ttf" | |
} | |
}, | |
{"Impact" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/impact.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/impact.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/impact.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/impact.ttf" | |
} | |
}, | |
{"Helvetica" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/helveticab.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/helveticai.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/helveticaz.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/helvetica.ttf" | |
} | |
}, | |
{"Comic sans ms" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/comicbd.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/comic.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/comicbd.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/comic.ttf" | |
} | |
}, | |
{"Montserrat" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/montserrat-medium.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/montserrat-regular.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/montserrat-medium.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/montserrat-regular.ttf" | |
} | |
}, | |
{"Open sans" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/opensans-semibold.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/opensans-bold.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/opensans-semibold.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/opensans-bold.ttf" | |
} | |
}, | |
{"Pacifico" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/pacifico-regular.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/pacifico-regular.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/pacifico-regular.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/pacifico-regular.ttf" | |
} | |
}, | |
{"Tangerine" => { | |
:bold => "#{Constants::FONTS_LIB_PATH}/tangerine-regular.ttf", | |
:italic => "#{Constants::FONTS_LIB_PATH}/tangerine-regular.ttf", | |
:bold_italic => "#{Constants::FONTS_LIB_PATH}/tangerine-regular.ttf", | |
:normal => "#{Constants::FONTS_LIB_PATH}/tangerine-regular.ttf" | |
} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment