Improve brainfuck renderer colors

This commit is contained in:
Nilay Majorwar 2021-12-17 20:07:47 +05:30
parent 0f3664eb63
commit 50e788dd3c

View File

@ -1,7 +1,13 @@
import { Card, Colors } from "@blueprintjs/core";
import { CSSProperties } from "react"; import { CSSProperties } from "react";
import { useDarkMode } from "../../ui/providers/dark-mode-provider";
import { RendererProps } from "../types"; import { RendererProps } from "../types";
import { BFRS } from "./constants"; import { BFRS } from "./constants";
// Colors used as background of active cells
const darkActiveBG = Colors.DARK_GRAY2;
const lightActiveBG = Colors.LIGHT_GRAY3;
const styles: { [k: string]: CSSProperties } = { const styles: { [k: string]: CSSProperties } = {
container: { container: {
padding: 10, padding: 10,
@ -16,16 +22,10 @@ const styles: { [k: string]: CSSProperties } = {
width: "12%", width: "12%",
height: "50px", height: "50px",
margin: "5px 0.25%", margin: "5px 0.25%",
padding: 12,
// Center-align values // Center-align values
display: "flex", display: "flex",
justifyContent: "center", justifyContent: "center",
alignItems: "center", alignItems: "center",
// Border and colors
border: "1px solid gray",
borderRadius: 5,
background: "#394B59",
color: "#E1E8ED",
}, },
activeCell: { activeCell: {
background: "#CED9E0", background: "#CED9E0",
@ -35,8 +35,14 @@ const styles: { [k: string]: CSSProperties } = {
/** Component for displaying a single tape cell */ /** Component for displaying a single tape cell */
const Cell = ({ value, active }: { value: number; active: boolean }) => { const Cell = ({ value, active }: { value: number; active: boolean }) => {
const cellStyle = { ...styles.cell, ...(active ? styles.activeCell : {}) }; const { isDark } = useDarkMode();
return <div style={cellStyle}>{value}</div>; const cellStyle = { ...styles.cell };
const activeBg = isDark ? darkActiveBG : lightActiveBG;
if (active) {
cellStyle.backgroundColor = activeBg;
cellStyle.fontWeight = "bold";
}
return <Card style={cellStyle}>{value}</Card>;
}; };
/** Renderer for Brainfuck */ /** Renderer for Brainfuck */