-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CLOSED] How to change font in theme ? #11267
Comments
Comment by saurabh95 You can change |
Comment by saurabh95 Also are you using 1.9 version? If yes, then there are some issues related to font-size and font-family in this, so you can install a stable pre-release for 1.10 in which above issue is fixed, https://github.com/adobe/brackets/releases/tag/release-1.10-prerelease-1 |
Comment by gthibaud Ok thank you very much ! |
Comment by JLewis82 Thank you so much! |
Comment by MRUNetwork thanks |
Comment by bnarris i have failed coz the font-size and font-family nothing changing |
Comment by iffitheking For me easier way is to go to view >> Themes... >> font-family |
Issue by gthibaud
Saturday Apr 15, 2017 at 09:27 GMT
Originally opened as adobe/brackets#13304
Hi,
I'm working on a Theme for Brackets, and I want to use a custom font instead of the default Brackets font.
I tried to use a
@
font-face in the theme.less file, but it seem to not working...`@font-face {
font-family: 'myfont';
src: url(fonts/myfont.ttf) format('ttf');
font-weight: normal;
font-style:normal;
}
.CodeMirror, .CodeMirror-scroll {
background-color:
@
background;color:
@
foreground;line-height: 25px;
font-family: 'myfont', Menlo;
}`
Does anyone have any idea how to do this?
Thank you very much for your help ! ;)
The text was updated successfully, but these errors were encountered: