Skip to content

Commit

Permalink
New font and style, update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Caley Woods committed Mar 10, 2020
1 parent 1a15e26 commit eb6500b
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,13 @@ If you're having trouble, try these resources:

* run `cargo build`

* run `./target/debug/tacos.exe` (On Windows)
* run `./target/debug/tacos.exe` (On Windows)

### Fonts

By default, TACOS uses the [Nouveau IBM](https://www.dafont.com/nouveau-ibm.font) font. Follow the link to download and install it or open `src\css\gtk.css` and change the `font-family` property to a different font that is installed on your local system.


### GUI Example

![TACOS GUI With Nouveau IBM Font](https://i.imgur.com/5tZmV2W.png)
12 changes: 10 additions & 2 deletions src/css/gtk.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
#text-view {
font-family: 'Nouveau IBM';
font-size: 20px;
}

#text-view text{
background-color: blue;
color: #ccc;
background-color: #0000AA;
color: #AAAAAA;
/* Uncomment these and comment the above to have green text on black background
background-color: #000000;
color: #00AA00; */
}

0 comments on commit eb6500b

Please sign in to comment.