﻿/* Txn custom colors for MudBlazor buttons and icons */
.txn-red {
    color: #B22222; /* firebrick */
}
    .txn-red .mud-icon-root {
        color: #B22222; /* .mud-icon-root ensures the icon inherits the color. Works for EndIcon or <MudIcon> children. */
    }
.txn-brown {
    color: #8b4513; /* saddlebrown */
}
    .txn-brown .mud-icon-root {
        color: #8b4513; /* .mud-icon-root ensures the icon inherits the color. Works for EndIcon or <MudIcon> children. */
    }

.txn-blue {
    color: #00008B; /* dark blue */
}

    .txn-blue .mud-icon-root { /* .mud-icon-root ensures the icon inherits the color. Works for EndIcon or <MudIcon> children. */
        color: #00008B;
    }

.txn-orange {
    color: #B8860b; /* darkgoldenrod */
}

    .txn-orange .mud-icon-root { /* .mud-icon-root ensures the icon inherits the color. Works for EndIcon or <MudIcon> children. */
        color: #B8860b;
    }

.txn-gray {
    color: #696969; /* dimgray */
}

    .txn-gray .mud-icon-root { /* .mud-icon-root ensures the icon inherits the color. Works for EndIcon or <MudIcon> children. */
        color: #696969;
    }
