This repository has been archived by the owner on Sep 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7.6k
How to change font in theme ? #13304
Comments
You can change |
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 |
Ok thank you very much ! |
Thank you so much! |
thanks |
i have failed coz the font-size and font-family nothing changing |
For me easier way is to go to view >> Themes... >> font-family |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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: