Spaces:
Sleeping
Sleeping
File size: 913 Bytes
01f0e50 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
from enum import Enum
css = """
.positive-pnl {
color: green !important;
font-weight: bold;
}
.positive-bg {
background-color: green !important;
font-weight: bold;
}
.negative-bg {
background-color: red !important;
font-weight: bold;
}
.negative-pnl {
color: red !important;
font-weight: bold;
}
.dataframe-fix-small .table-wrap {
min-height: 150px;
max-height: 150px;
}
.dataframe-fix .table-wrap {
min-height: 200px;
max-height: 200px;
}
footer{display:none !important}
"""
js = """
function refresh() {
const url = new URL(window.location);
if (url.searchParams.get('__theme') !== 'dark') {
url.searchParams.set('__theme', 'dark');
window.location.href = url.href;
}
}
"""
class Color(Enum):
RED = "#dd0000"
GREEN = "#00dd00"
YELLOW = "#dddd00"
BLUE = "#0000ee"
MAGENTA = "#aa00dd"
CYAN = "#00dddd"
WHITE = "#87CEEB"
|