mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
69 lines
2.0 KiB
SCSS
69 lines
2.0 KiB
SCSS
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
// Material Design Icons, used primarily in icon.tsx
|
|
// Latest: https://github.com/google/material-design-icons/tree/master/font
|
|
@font-face {
|
|
font-family: "Material Icons";
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: block;
|
|
src: url("../fonts/MaterialIcons-Regular.ttf") format("truetype");
|
|
}
|
|
|
|
// Terminal fonts (monospaced)
|
|
// Source: https://fonts.google.com/?category=Monospace
|
|
@font-face {
|
|
font-family: 'Anonymous Pro', monospace;
|
|
src: local('Anonymous Pro'), url('../fonts/AnonymousPro-Regular.ttf') format('truetype');
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'IBM Plex Mono', monospace;
|
|
src: local('IBM Plex Mono'), url('../fonts/IBMPlexMono-Regular.ttf') format('truetype');
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
src: local('JetBrains Mono'), url('../fonts/JetBrainsMono-Regular.ttf') format('truetype');
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Red Hat Mono', monospace;
|
|
src: local('Red Hat Mono'), url('../fonts/RedHatMono-Regular.ttf') format('truetype');
|
|
font-display: block;
|
|
}
|
|
|
|
|
|
@font-face {
|
|
font-family: 'Source Code Pro', monospace;
|
|
src: local('Source Code Pro'), url('../fonts/SourceCodePro-Regular.ttf') format('truetype');
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Space Mono', monospace;
|
|
src: local('Space Mono'), url('../fonts/SpaceMono-Regular.ttf') format('truetype');
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Ubuntu Mono', monospace;
|
|
src: local('Ubuntu Mono'), url('../fonts/UbuntuMono-Regular.ttf') format('truetype');
|
|
font-display: block;
|
|
}
|
|
|
|
// Patched RobotoMono font with icons
|
|
// RobotoMono Windows Compatible for using in terminal
|
|
// https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/RobotoMono
|
|
@font-face {
|
|
font-family: 'RobotoMono', monospace;
|
|
src: local('RobotoMono'), url('../fonts/roboto-mono-nerd.ttf') format('truetype');
|
|
font-display: block;
|
|
}
|