{"version":3,"sources":["../src/green.ts"],"names":[],"mappings":";;;AAkBO,IAAM,KAAA,GAAe,OAAO,MAAA,CAAO;AAAA,EACxC,gBAAA,EAAkB,SAAA;AAAA,EAClB,eAAA,EAAiB,SAAA;AAAA,EACjB,iBAAA,EAAmB,0BAAA;AAAA,EACnB,gBAAA,EAAkB,0BAAA;AAAA,EAClB,oBAAA,EAAsB,qBAAA;AAAA,EACtB,4BAAA,EAA8B,oBAAA;AAAA,EAC9B,aAAA,EAAe,oEAAA;AAAA,EACf,mBAAA,EAAqB,SAAA;AAAA,EACrB,kBAAA,EAAoB;AACtB,CAAC","file":"chunk-IY5GR5A7.cjs","sourcesContent":["/**\n * Green theme — chess.com's default green/cream board.\n *\n * CSS-variable-only. Import this theme and pass it as the `theme` prop on\n * `<Chessboard/>`:\n *\n * ```tsx\n * import { green } from \"@ultrachess/themes/green\";\n * <Chessboard game={game} theme={green} />\n * ```\n *\n * Palette tuned to visually match chess.com's board at a glance — the light\n * square is a warm off-white and the dark square is the recognisable\n * olive-green used across their web and mobile clients.\n */\n\nimport type { Theme } from \"./index.js\";\n\nexport const green: Theme = Object.freeze({\n  \"--ucr-sq-light\": \"#eeeed2\",\n  \"--ucr-sq-dark\": \"#769656\",\n  \"--ucr-last-move\": \"rgba(255, 255, 51, 0.45)\",\n  \"--ucr-selected\": \"rgba(255, 255, 51, 0.55)\",\n  \"--ucr-legal-target\": \"rgba(0, 0, 0, 0.14)\",\n  \"--ucr-legal-target-capture\": \"rgba(0, 0, 0, 0.3)\",\n  \"--ucr-check\": \"radial-gradient(rgba(255, 0, 0, 0.55) 30%, rgba(255, 0, 0, 0) 80%)\",\n  \"--ucr-coord-light\": \"#769656\",\n  \"--ucr-coord-dark\": \"#eeeed2\",\n});\n"]}