37 lines
583 B
CSS
37 lines
583 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@font-face {
|
|
font-family: JetBrainsMono;
|
|
src: url(/jbmv.ttf);
|
|
}
|
|
|
|
* {
|
|
-webkit-tap-highlight-color: transparent;
|
|
outline: none !important;
|
|
|
|
font-family: JetBrainsMono;
|
|
|
|
/* white theme */
|
|
--w-bg: #ddd;
|
|
--w-text: #000;
|
|
--w-border: #000;
|
|
|
|
--w-red: #fcc;
|
|
--w-green: #0f0;
|
|
--w-blue: #ccf;
|
|
--w-orange: #f80;
|
|
|
|
/* dark theme */
|
|
--b-bg: #000;
|
|
--b-text: #fff;
|
|
--b-border: #fff;
|
|
|
|
--b-red: #800;
|
|
--b-green: #080;
|
|
--b-blue: #000066;
|
|
--b-orange: #f80;
|
|
|
|
}
|