mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-08 06:51:32 +08:00
* Update .gitignore * init * Update backend.py * Update main.tsx * Update no_import.py * Update session_controller.py * indents * adjust window size * update keys * re-add save session for pywry login * pop response keys on rename * walrus remember * use session username for profile * implement logout clearing of cookies * don't display welcome when logging in from `account` menu * Update session_model.py * Update session_model.py * customdata handler for charts * fix remember key * only slice data if chandlestick trace in data * Update profile_model.py * Update streamlit_run.py * Update plotly.html * test * Update loggers.py * updates * Update session_controller.py * Update session_controller.py * no longer need to call_hub for logout * tests * Update test_session_controller.py * Update profile_model.py * bump pywry, fix numbers passed as strings tables * update plotly frontend packages * formatting * Update backend.py * Update backend.py * change to prod * return on image export --------- Co-authored-by: James Maslek <jmaslek11@gmail.com>
31 lines
808 B
JavaScript
Vendored
31 lines
808 B
JavaScript
Vendored
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: "class",
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}", "../fonts"],
|
|
theme: {
|
|
extend: {
|
|
screens: {
|
|
smh: { raw: "(max-height: 450px)" },
|
|
},
|
|
colors: {
|
|
"grey-50": "#f6f6f6ff",
|
|
"grey-100": "#eaeaeaff",
|
|
"grey-200": "#dcdcdcff",
|
|
"grey-300": "#c8c8c8ff",
|
|
"grey-400": "#a2a2a2ff",
|
|
"grey-500": "#808080ff",
|
|
"grey-600": "#5a5a5aff",
|
|
"grey-700": "#474747ff",
|
|
"grey-800": "#2a2a2aff",
|
|
"grey-850": "#131313ff",
|
|
"grey-900": "#070707ff",
|
|
"burgundy-300": "#B47DA0",
|
|
"burgundy-400": "#9B5181",
|
|
"burgundy-500": "#822661",
|
|
"burgundy-900": "#340F27",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|