> ## Documentation Index
> Fetch the complete documentation index at: https://docs.celo.org/llms.txt
> Use this file to discover all available pages before exploring further.

# Explorer on Celo

export const ColoredText = ({color = "#329F3B", darkColor = "#fcff52", children}) => {
  const isTWLight = typeof color === "string" && color.startsWith("text-");
  const isTWDark = typeof darkColor === "string" && darkColor.startsWith("text-");
  const Wrap = ({useColor, kids}) => typeof kids === "string" ? kids : <span style={{
    color: `${useColor} !important`
  }} className="!text-inherit">
        {kids}
      </span>;
  return <>
      {}
      <span className={`colored_text font-bold dark:hidden ${isTWLight ? `!${color}` : ""}`} style={!isTWLight ? {
    color,
    fontWeight: "bold"
  } : {
    fontWeight: "bold"
  }}>
        <Wrap useColor={isTWLight ? undefined : color} kids={children} />
      </span>

      {}
      <span className={`colored_text font-bold hidden dark:inline ${isTWDark ? `!${darkColor}` : ""}`} style={!isTWDark ? {
    color: darkColor,
    fontWeight: "bold"
  } : {
    fontWeight: "bold"
  }}>
        <Wrap useColor={isTWDark ? undefined : darkColor} kids={children} />
      </span>
    </>;
};

If you are looking to check your recent transactions or check and interact with a smart contract, check out our <ColoredText>[Block Explorer](/developer/explorers/block-explorers)</ColoredText>.
If you need historical data for building your dapp, you can find that in the <ColoredText>[Data Indexer](/developer/indexers/overview)</ColoredText> and if you are looking to get an overview on what is happening on Celo, top applications and TVL, check out the <ColoredText>[Analytics](/developer/explorers/analytics)</ColoredText> page.

* [Block Explorers](/developer/explorers/block-explorers)
* [Data Indexers](/developer/indexers/overview)
* [Analytics](/developer/explorers/analytics)
