Appearance

Customize how SciTeX looks and feels for you

Theme mode

Choose how SciTeX looks to you. Select between light and dark themes.

☀️
Light
Use light theme
🌙
Dark
Use dark theme

Preview

Sample Content

This is how text and content will appear with your selected theme. Links look like this and buttons look like this:

Code highlighting themes

Choose syntax highlighting themes for code viewing. You can select different themes for light and dark modes.

Preview

This preview shows how code will appear with your selected theme. Try changing themes to see the difference.

Python
def calculate_statistics(data):
    """Calculate mean and variance from dataset."""
    n = len(data)
    mean = sum(data) / n
    variance = sum((x - mean) ** 2 for x in data) / n

    return {
        'mean': mean,
        'variance': variance,
        'std_dev': variance ** 0.5
    }

# Example usage
dataset = [1.2, 2.5, 3.7, 4.1, 5.9]
stats = calculate_statistics(dataset)
print(f"Mean: {stats['mean']:.2f}")